Hello, I'm fairly new to the Creation Kit and I've been working on a quest that involves breaking through a barrier by using the Unrelenting Force Shout (All 3 words). This is the script I'm using.
Scriptname AABarrierShoutScript extends ObjectReference Quest Property myQuest Auto ObjectReference Property Barrier Auto MagicEffect Property VoicePushEffect3 Auto Event OnMagicEffectApply(ObjectReference akCaster, MagicEffect akEffect) if akCaster == Game.GetPlayer() debug.notification("BarrierHit") if akEffect == VoicePushEffect3 debug.notification("BarrierDisabled") Barrier.Disable() endif endifendEvent