Background for Fallout 4
Member of the Quest script

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")
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Quest

event OnQuestInit()
    Debug.trace("Event received - OnQuestInit")
endEvent

Related Pages


Additional References

View this event’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.