SetObjectiveDisplayed - Quest

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Quest Script

Sets whether the specified quest objective is displayed or not.

Syntax[edit | edit source]

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

Parameters[edit | edit source]

  • 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 Value[edit | edit source]

None.

Examples[edit | edit source]

; Display objective 10
MyQuest.SetObjectiveDisplayed(10)


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

See Also[edit | edit source]