OnLycanthropyStateChanged - Actor

Member of: Actor Script (Requires SSE 1.5.3)

Event called when this actor's lycanthropy state has changed

SyntaxEdit

Event OnLycanthropyStateChanged(bool abIsWerewolf)

ParametersEdit

  • abIsWerewolf: If true, the actor is now a werewolf. If false, they have been cured.

ExamplesEdit

Event OnLycanthropyStateChanged(bool abIsWerewolf)
  if (abIsWerewolf)
    HowlAtMoon()
  endIf
endEvent

See AlsoEdit