GetQuestStageDone - Quest

From the Fallout4 CreationKit Wiki
Revision as of 18:03, 2 December 2015 by imported>Plplecuyer (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Quest Script Returns whether the specified quest stage is set. == Syntax == <source lang="papyrus"> bool Functi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Quest Script

Returns whether the specified quest stage is set.

Syntax[edit | edit source]

bool Function GetQuestStageDone(QuestStage questStageToCheck) global

Parameters[edit | edit source]

  • questStageToCheck: The QuestStage that contains the quest and stage to check

Return Value[edit | edit source]

True if the stage is done, false otherwise.

Examples[edit | edit source]

; Set the specified quest stage
if Quest.GetQuestStageDone(myQuestAndStage)
  Debug.Trace("We've done this part of the quest...")
endIf

See Also[edit | edit source]