Fallout New Vegas

File information

Last updated

Original upload

Created by

Dree KBL

Uploaded by

dree74

Virus scan

Safe to use

About this mod

For some people, Lonesome Road DLC will crash 2-3 seconds after you entered the Divide from the Missle Bunker. If this is the case, this simple plug-in will fix it.

Permissions and credits
Donations
This simple script mod fixes the CTD when you enter the Divide from Missile Bunker.

The problem was caused by the PlayMusic commands from the script.

=============================================

scn NVDLC04Road01MusicScript

; Script plays Music for walking past First Warhead
; AJD 4/12/2011
; J.S. 4/13/11 - Added GameMode block, and timer, to control the return of normal music after the reveal sounds play.


IntnState
FloatfTimer

Begin OnTriggerEnter Player

If (nState == 0)
PlayMusic NVDLC04TransitionStinger;
PlaySound musNVDLC04WarheardReveal;
Set nState to 1;
Endif

End


BEGIN GameMode

If (nState == 1)
Set fTimer to (fTimer + GetSecondsPassed);
If (fTimer >= 16)
Set nState to 2;
Return;
Else
PlayMusic NVDLC04TransitionStinger;
Endif
Elseif (nState == 2)
Disable;
MarkForDelete;
Endif

END

===============================================================

All the lines with PlayMusic and PlaySound are commented out.

If you have question or curiosity, contact me via