IsStopping- Quest
Jump to navigation
Jump to search
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