- Found in:
- Vanilla
eventOnDeath(ObjectReferenceakKiller)
Description
Documentation Comment
Event that is triggered when this actor finishes dying (only if this alias points at an actor)
Parameters
ObjectReferenceakKiller
Examples
Auto-Generated Example
Scriptname MyCoolScript extends ReferenceAlias
event OnDeath(ObjectReference akKiller)
Debug.trace("Event received - OnDeath: akKiller = " + akKiller)
endEvent