IsStarting - Quest
Revision as of 13:30, 25 October 2011 by imported>Plplecuyer
Member of: Quest Script
Checks to see if this quest is in the process of starting up.
SyntaxEdit
bool Function IsStarting() native
ParametersEdit
None.
Return ValueEdit
Whether this quest is enabled but not running yet.
ExamplesEdit
; Is the main quest currently starting up?
if (MainQuestProperty.IsStarting())
Debug.Trace("The main quest is still starting")
endIf