- Found in:
- Vanilla
eventOnQuestShutdown()
Description
Wiki Description
Event received when this quest is shut down. Aliases are cleared at this point.
Documentation Comment
Event received when the quest has been shut down
Note that the aliases will be empty by the time this event is received
Examples
Event OnQuestShutdown()
Debug.Trace("This quest has shut down - do any cleanup we need to do")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Quest
event OnQuestShutdown()
Debug.trace("Event received - OnQuestShutdown")
endEvent