Fallout Wiki
Fallout Wiki
Details
Type Decompiled script
Editor ID CampSearchlightAstorPatrolScript
Form ID 0014E32A

This script is attached to a trigger volume at Camp Searchlight. It manages the patrol behavior of First Sergeant Astor and three NCR troopers, updating a quest variable and refreshing their AI packages when they enter or leave the trigger area. The script is tied to the quest We Will All Go Together.

scn CampSearchlightAstorPatrolScript
begin onTriggerEnter AstorREF
        set VMS43.AstorPatrolMarker to 1
        AstorREF.evp
        CSTrooper01REF.evp
        CSTrooper02REF.evp
        CSTrooper03REF.evp
end
begin onTriggerLeave AstorREF
        set VMS43.AstorPatrolMarker to 0
        AstorREF.evp
        CSTrooper01REF.evp
        CSTrooper02REF.evp
        CSTrooper03REF.evp
end