IsStarting - Quest
Revision as of 13:30, 25 October 2011 by imported>Jlundin
Member of: Quest Script
Checks to see if this quest is in the process of starting up.
Syntax[edit | edit source]
bool Function IsStarting() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Whether this quest is enabled but not running yet.
Examples[edit | edit source]
; Is the main quest currently starting up?
if (MainQuestProperty.IsStarting())
Debug.Trace("The main quest is still starting")
endIf