IsStopped - Quest
Jump to navigation
Jump to search
Member of: Quest Script
Checks to see if this quest is completely stopped.
Syntax[edit | edit source]
bool Function IsStopped() native
Parameters[edit | edit source]
None.
Return Value[edit | edit source]
Whether this quest is no longer enabled and fully shut down.
Examples[edit | edit source]
; Is the main quest currently fully stopped?
if (MainQuestProperty.IsStopped())
Debug.Trace("The main quest is stopped")
endIf