OnQuestInit - Quest

From the Fallout4 CreationKit Wiki
Revision as of 14:02, 10 December 2013 by imported>Plplecuyer (→‎Notes)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

Syntax[edit | edit source]

Event OnQuestInit()

Parameters[edit | edit source]

None.

Examples[edit | edit source]

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

Notes[edit | edit source]

  • 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 Also[edit | edit source]