Background for Skyrim SE
Member of the Actor script
eventOnLycanthropyStateChanged(boolabIsWerewolf)

Description

Wiki Description

Event called when this actor's lycanthropy state has changed

Documentation Comment

Received when the lycanthropy state of this actor changes (when SendLycanthropyStateChanged is called)


Parameters

  1. boolabIsWerewolf

    CK Wiki Description

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


Examples

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

Auto-Generated Example

Scriptname MyCoolScript extends Actor

event OnLycanthropyStateChanged(bool abIsWerewolf)
    Debug.trace("Event received - OnLycanthropyStateChanged: abIsWerewolf = " + abIsWerewolf)
endEvent

Related Pages


Additional References

View this event’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.