IsObjectiveDisplayed - Quest
Revision as of 15:29, 17 November 2015 by imported>Plplecuyer
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