OnLycanthropyStateChanged - Actor

Revision as of 16: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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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