IsStopping - Quest
Revision as of 14:45, 21 August 2013 by imported>Cappy (moved IsStopping- Quest to IsStopping - Quest)
Member of: Quest Script
Checks to see if this quest is in the process of shutting down.
SyntaxEdit
bool Function IsStopping() native
ParametersEdit
None.
Return ValueEdit
Whether this quest is no longer enabled but still trying to shut down.
ExamplesEdit
; Is the main quest currently shutting down?
if (MainQuestProperty.IsStopping())
Debug.Trace("The main quest is still shutting down")
endIf