OnQuestInit - Quest

Revision as of 14:02, 10 December 2013 by imported>Plplecuyer (→‎Notes)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Quest Script

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.

SyntaxEdit

Event OnQuestInit()

ParametersEdit

None.

ExamplesEdit

Event OnQuestInit()
  Debug.Trace("This quest has started - we can mess with aliases now")
endEvent

NotesEdit

  • This event runs in parallel with the startup quest stage fragment, and the OnAliasInit events.
  • This event does not block other events, functions, or properties from running (unlike OnInit).

See AlsoEdit