Background for Fallout 4
Member of the Quest script
boolfunctionGetStageDone(intaiStage)

Description

Wiki Description

Obtains whether the specified stage is done or not.

Documentation Comment

Alias for IsStageDone - checks to see whether the given stage is done or not


Caveats


Parameters

intaiStage

CK Wiki Description

The stage to check.


Examples

; is stage 20 done in the main quest?
bool mainQuestStage20Done = MainQuestProperty.IsStageDone(20)
; Prints a debug message if the side quest has completed stage 10
if (SideQuestProperty.GetStageDone(10))
  Debug.Trace("The side quest has finished stage 10!")
endIf

Auto-Generated Example

int myInt__aiStage

bool returnedValue = myQuest__toCallFunctionOn.GetStageDone(myInt__aiStage)

Related Pages


Additional References

View this function’s page on the Fallout 4 Creation Kit Wiki

Some data provided by the Fallout 4 Creation Kit Wiki. Licensed under the Creative Commons Attribution-Share Alike 4.0 license.