eventOnWardHit(ObjectReferenceakCaster, SpellakSpell, intaiStatus)
Description
Wiki Description
Event called when the object reference is using a ward that is hit by a spell.
Documentation Comment
Event received when this object's Ward is hit by a spell
Parameters
ObjectReferenceakCaster
CK Wiki Description
The ObjectReference that cast as spell at this reference.
SpellakSpell
CK Wiki Description
The Spell that hit this reference.
intaiStatus
CK Wiki Description
One of the following:* 0 for a friendly spell hit
- 1 if the ward absorbed the spell
- 2 if the ward was broken.
Examples
Event OnWardHit(ObjectReference akCaster, Spell akSpell, int aiStatus)
Debug.Trace("We were hit by " + akSpell + " while having a ward up")
EndEventAuto-Generated Example
Scriptname MyCoolScript extends ObjectReference
event OnWardHit(ObjectReference akCaster, Spell akSpell, int aiStatus)
Debug.trace("Event received - OnWardHit: akCaster = " + akCaster + " akSpell = " + akSpell + " aiStatus = " + aiStatus)
endEvent