OnWardHit - ObjectReference
Jump to navigation
Jump to search
Member of: ObjectReference Script
Event called when the object reference is using a ward that is hit by a spell.
Syntax[edit | edit source]
Event OnWardHit(ObjectReference akCaster, Spell akSpell, int aiStatus)
Parameters[edit | edit source]
- akCaster: The ObjectReference that cast as spell at this reference.
- akSpell: The Spell that hit this reference.
- aiStatus: One of the following:
- 0 for a friendly spell hit
- 1 if the ward absorbed the spell
- 2 if the ward was broken.
Examples[edit | edit source]
Event OnWardHit(ObjectReference akCaster, Spell akSpell, int aiStatus)
Debug.Trace("We were hit by " + akSpell + " while having a ward up")
EndEvent