OnLycanthropyStateChanged - Actor
Revision as of 15:50, 3 October 2017 by imported>Jlundin (Created page with "Category:Scripting Category:Papyrus Category:Events '''Member of:''' Actor Script ''(Requires SSE 1.5.3)'' Event called when this actor's lycanthropy state ha...")
Member of: Actor Script (Requires SSE 1.5.3)
Event called when this actor's lycanthropy state has changed
Syntax[edit | edit source]
Event OnLycanthropyStateChanged(bool abIsWerewolf)
Parameters[edit | edit source]
- abIsWerewolf: If true, the actor is now a werewolf. If false, they have been cured.
Examples[edit | edit source]
Event OnLycanthropyStateChanged(bool abIsWerewolf)
if (abIsWerewolf)
HowlAtMoon()
endIf
endEvent