- Found in:
- Vanilla
eventOnQuestInit()
Description
Wiki Description
Event received when this quest has just started up - after aliases are filled, and at the same time as the quest startup stage is run.
Documentation Comment
Event received when the quest is initalized, aliases are filled, and it is about to run the startup stage
Caveats
CK Wiki - Notes
- This event runs in parallel with the startup quest stage fragment, and the Alias.OnAliasInit() events.
- This event does not block other events, functions, or properties from running (unlike OnInit).
Examples
Event OnQuestInit()
Debug.Trace("This quest has started - we can mess with aliases now")
endEventAuto-Generated Example
Scriptname MyCoolScript extends Quest
event OnQuestInit()
Debug.trace("Event received - OnQuestInit")
endEvent