Fallout Wiki
Fallout Wiki
Details
Type Decompiled script
Editor ID CampSearchlightEdwardsLeavingScript
Form ID 0014660E

This script is attached to a trigger volume at Camp Searchlight. It manages the departure of Private Edwards, a ghoulified NCR trooper, as part of the quest Arachnophobia. The script sets different quest stages based on the player’s chosen outcome for Edwards, triggered when he enters the trigger area.

scn CampSearchlightEdwardsLeavingScript
Begin onTriggerEnter EdwardsREF
        if VMS43a.EdwardsToAstor == 1
                SetStage VMS43a 16
        elseif VMS43a.EdwardsToEcho == 1
                SetStage VMS43a 17
        elseif VMS43a.EdwardsToWasteland == 1
                SetStage VMS43a 18
        elseif VMS43a.EdwardsKillAstor == 1
                SetStage VMS43a 19
        Endif
End