OnVampirismStateChanged - Actor

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