• New Horizons on Maelstrom
    Maelstrom New Horizons


    Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!

Need Help how to disable battle screaming and yelling?

ryan arrrg

Landlubber
i want to know how to disable the sound effects when a battle starts where the crew is yelling and screaming. i think it is very annoying and i want to disable it without turning the sound effects completely off
 
Try editing "PROGRAM\Loc_ai\LAi_boarding.c". Find this line:
Code:
mchr.abordagesound = PlayStereoSoundLooped("OBJECTS\ABORDAGE\abordage2.wav");    // PB: Start Playing Boarding Sound
Change it to:
Code:
// mchr.abordagesound = PlayStereoSoundLooped("OBJECTS\ABORDAGE\abordage2.wav");    // PB: Start Playing Boarding Sound
Putting '//' in front of the line turns it into a comment which will not be run. My guess is that commenting out this line should stop the initial screaming.
 
Back
Top