- Found in:
- Vanilla
eventOnAliasShutdown()
Description
Wiki Description
Event received when the quest that owns this alias has shut down. The alias will be cleared by this point.
Documentation Comment
Event received when the alias has been shut down (because the quest has been shut down)
Note that the alias will be empty by the time this event is received
Examples
Event OnAliasShutdown()
Debug.Trace("This alias's quest has shut down, do any cleanup")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Alias
event OnAliasShutdown()
Debug.trace("Event received - OnAliasShutdown")
endEvent