OnWardHit - ObjectReference
Member of: ObjectReference Script
Event called when the object reference is using a ward that is hit by a spell.
SyntaxEdit
Event OnWardHit(ObjectReference akCaster, Spell akSpell, int aiStatus)
ParametersEdit
- 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.
ExamplesEdit
Event OnWardHit(ObjectReference akCaster, Spell akSpell, int aiStatus)
Debug.Trace("We were hit by " + akSpell + " while having a ward up")
EndEvent