OnVampirismStateChanged - Actor

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

Member of: Actor Script (Requires SSE 1.5.3)

Event called when this actor's vampirism state has changed

SyntaxEdit

Event OnVampirismStateChanged(bool abIsVampire)

ParametersEdit

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

ExamplesEdit

Event OnVampirismStateChanged(bool abIsVampire)
  if (abIsVampire)
    Debug.Trace("Actor is now a vampire - they should probably not be eating garlic bread")
  endIf
endEvent

See AlsoEdit