| This is the transcript of a script file, which runs certain tasks in the game upon execution. |
| Details | |
|---|---|
| Type | Decompiled script |
| Editor ID | BMNeilConvinceScript
|
| Form ID | 000E7B6C |
This script triggers if the player convinced Neil to help distract the mutants at Black Mountain during Crazy, Crazy, Crazy.
scn BMNeilConvinceScript
begin OnTriggerEnter NeilREF
;begin OnTriggerEnter player
;ShowWarning \"Neil entered the distraction trigger\"
if VFreeformBlackMountain.NeilState == 3
; Neil gestures and says he spotted you down the path
NeilREF.Say BMNeilDistractsNightkin
;ShowWarning \"Distraction away!\"
set VFreeformBlackMountain.SummitNightkinState to 1
set VFreeformBlackMountain.DistractionDone to 1
; The nightkin run off down the path
BMMutantMob1.evp
BMMutantMob1.setav Perception 1
BMMutantMob2.evp
BMMutantMob2.setav Perception 1
BMMutantMob3.evp
BMMutantMob3.setav Perception 1
BMMutantMob4.evp
BMMutantMob4.setav Perception 1
BMMutantMob5.evp
BMMutantMob5.setav Perception 1
; Make Neil walk back to the dome hut
set VFreeformBlackMountain.NeilState to 4
NeilREF.evp
endif
end