IsObjectiveDisplayed - Quest
Jump to navigation
Jump to search
Member of: Quest Script
Obtains whether the specified quest objective is displayed or not.
Syntax[edit | edit source]
bool Function IsObjectiveDisplayed(int aiObjective) native
Parameters[edit | edit source]
- aiObjective: The objective to check.
Return Value[edit | edit source]
Whether the specified objective is displayed or not.
Examples[edit | edit source]
; Is the third objective displayed?
if HardQuest.IsObjectiveDisplayed(3)
Debug.Trace("Objective hidden - player likely doesn't know about it")
endIf