IsRunning - Quest

Revision as of 09:50, 29 July 2016 by imported>Thorskin
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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