IsRunning - Quest

Member of: Quest Script

Checks to see if this quest is running or not.

SyntaxEdit

bool Function IsRunning() native

ParametersEdit

None.

Return ValueEdit

Whether this quest is running or not.

ExamplesEdit

; Is the main quest running?
if (MainQuestProperty.IsRunning())
  Debug.Trace("The main quest is running")
endIf

NotesEdit

  • If the quest has a startup stage, IsRunning() remains false until the fragment scripts of this stage end their execution.

See AlsoEdit