It's supposed to be registering the weapon swing animation, the first debug message fires, though I don't know if it actually is registering the animation.
Second event never seems to fire.
It's all within a lesser power lasting 30 seconds.
Spoiler
Event OnEffectStart(Actor akTarget, Actor akCaster)Debug.Notification("Script fired!")RegisterForAnimationEvent(Game.GetPlayer(), "WeaponSwing")EndEventEvent OnAnimationEvent(ObjectReference akSource, String asEventName)if asEventName == "WeaponSwing"Debug.Notification("Ooo it caught the attack!")EndIfEndEvent
As usual thanks for any of your help!