IsActive - Quest

Revision as of 20:08, 21 February 2011 by imported>Jlundin (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Quest Script Checks to see if this quest is active (currently tracked by the player). == Syntax == <source lang…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Quest Script

Checks to see if this quest is active (currently tracked by the player).

SyntaxEdit

bool Function IsActive() native

ParametersEdit

None.

Return ValueEdit

Whether this quest is active or not.

ExamplesEdit

; Is the player currently tracking the main quest?
if (MainQuestProperty.IsActive())
  Debug.Trace("The main quest is active")
endIf

See AlsoEdit