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.
Syntax[edit | edit source]
bool Function IsStopping() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Whether this quest is no longer enabled but still trying to shut down.
Examples[edit | edit source]
; Is the main quest currently shutting down?
if (MainQuestProperty.IsStopping())
Debug.Trace("The main quest is still shutting down")
endIf