Background for Fallout 4
Member of the Alias script

Description

Wiki Description

Event received when this alias has been filled (or not filled) as a result of the quest starting up. Other aliases in the quest will have also been filled by this point, and the quest is about to start its startup stage.

Documentation Comment

Event received when this alias is initialized and filled - before quest startup stage is run
(other aliases on the same quest will also be filled)


Caveats

CK Wiki - Notes

  • This event does not block other events, functions, or properties from running (unlike OnInit).

Examples

Event OnAliasInit()
  Debug.Trace("This alias is initialized - we can do something with our contents now")
endEvent

Auto-Generated Example

Scriptname MyCoolScript extends Alias

event OnAliasInit()
    Debug.trace("Event received - OnAliasInit")
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.