OnAliasInit - Alias

From the Fallout4 CreationKit Wiki
Revision as of 14:58, 10 December 2013 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus Category:Events '''Member of:''' Alias Script Event received when this alias has been filled (or not filled) as a result of t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Alias Script

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.

Syntax[edit | edit source]

Event OnAliasInit()

Parameters[edit | edit source]

None.

Examples[edit | edit source]

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

Notes[edit | edit source]

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

See Also[edit | edit source]