SetObjectiveDisplayed - Quest

Member of: Quest Script

Sets whether the specified quest objective is displayed or not.

SyntaxEdit

Function SetObjectiveDisplayed(int aiObjective, bool abDisplayed = true, bool abForce = false) native

ParametersEdit

  • aiObjective: The objective to set as displayed or hidden.
  • abDisplayed: Whether the objective is displayed or not.
    • Default: true
  • abForce: If this is true, the objective will be displayed, even if it was displayed before
    • Default: false

Return ValueEdit

None.

ExamplesEdit

; Display objective 10
MyQuest.SetObjectiveDisplayed(10)


; Display objective 15, even if it was displayed before
MyQuest.SetObjectiveDisplayed(15, abForce = true)

See AlsoEdit