OnKill - Actor
From Creation Kit
Member of: Actor Script
Event called when the actor kills another.
Contents
Syntax
Event OnKill(Actor akVictim)
Parameters
- akVictim: The Actor that this actor killed.
Examples
Event OnKill(Actor akVictim) if (akVictim == Game.GetPlayer()) Debug.Trace("We killed the player!") endIf endEvent