eventOnLycanthropyStateChanged(boolabIsWerewolf)
Description
Wiki Description
Event called when this actor's lycanthropy state has changed
Documentation Comment
Received when the lycanthropy state of this actor changes (when SendLycanthropyStateChanged is called)
Parameters
boolabIsWerewolf
CK Wiki Description
If true, the actor is now a werewolf. If false, they have been cured.
Examples
Event OnLycanthropyStateChanged(bool abIsWerewolf)
if (abIsWerewolf)
HowlAtMoon()
endIf
endEventAuto-Generated Example
Scriptname MyCoolScript extends Actor
event OnLycanthropyStateChanged(bool abIsWerewolf)
Debug.trace("Event received - OnLycanthropyStateChanged: abIsWerewolf = " + abIsWerewolf)
endEvent