IsObjectiveDisplayed - Quest

Member of: Quest Script

Obtains whether the specified quest objective is displayed or not.

SyntaxEdit

bool Function IsObjectiveDisplayed(int aiObjective) native

ParametersEdit

  • aiObjective: The objective to check.

Return ValueEdit

Whether the specified objective is displayed or not.

ExamplesEdit

; Is the third objective displayed?
if HardQuest.IsObjectiveDisplayed(3)
  Debug.Trace("Objective hidden - player likely doesn't know about it")
endIf

See AlsoEdit