OnInit - ScriptObject

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: ScriptObject

Event called when the script has been created and all its properties have been initialized.

Syntax[edit | edit source]

Event OnInit()

Example[edit | edit source]

; This is within the "empty" state
EVENT onInit()                  ; This event will run once, when the script is initialized
	StartTimer(5)
	gotoState ("waiting")
endEVENT
	
 STATE waiting
	EVENT onTimer(int aiTimerID)			
		Debug.Trace("5 second timer expired!")
	endEVENT
endSTATE

Parameters[edit | edit source]

None

Notes[edit | edit source]

  • Until OnInit has finished running, your script will not receive any events, and other scripts that try to call functions or access properties on your script will be paused until the event finishes. The only exceptions are when the functions are being called from another script inside its OnInit event, or inside a property set function being set by the master file.
    • Because of this, do not set stages in the OnInit event, or in any function called by OnInit, as it can result in a deadlock.
  • OnInit is called at the following times:
    • For Quests and Aliases: On game startup, and again whenever a repeatable quest starts, due to the quest being reset.
    • For other base objects like Topic Infos, Perks, etc that have scripts that run on the base object: At game start
    • For persistent refs: At game start
    • For non-persistent refs: When the ref comes into existence for the first time (not when 3d is loaded)
  • OnInit is called again when an object is reset. All your variables and properties will be reset before OnInit is called.
    • For Quests and Aliases this will happen when your quest starts, if it is repeatable. This means that a quest and alias will see OnInit twice before it starts the first time (game startup, and on reset). This should not cause any problems unless you are manipulating something outside the quest that doesn't reset in your OnInit.
    • For references this happens when the cell resets.

See Also[edit | edit source]

None