| This is the transcript of a script file, which runs certain tasks in the game upon execution. |
| Details | |
|---|---|
| Type | Decompiled script |
| Editor ID | ArcadeWestSideTriggerScript
|
| Form ID | 0016B422 |
This script relates to one of Arcade Gannon's triggers to start his quest, For Auld Lang Syne.
scn ArcadeWestSideTriggerScript
short bMentionedAnderson
short bMentionedOutcome
begin OnTriggerEnter player
if (VNPCFollowers.ArcadeHired == 1)
if (GetQuestRunning VMS11 == 1) && (GetStage VMS11 < 40) && (bMentionedAnderson == 0)
;ShowWarning \"Arcade mentions Anderson\"
ArcadeREF.SayTo player ArcadeWhiteWashInProgress
set bMentionedAnderson to 1
endif
if (GetQuestCompleted VMS11 == 1)
if (GetStageDone VMS11 140 == 0) && (VMS11.nOutcome != 3) && (VMS11.bArcadeWitness == 0) && (bMentionedOutcome == 0)
ArcadeREF.StartConversation player ArcadeAboutAnderson
set bMentionedOutcome to 1
Disable
MarkForDelete
endif
endif
endif
end