Stop Pirate Radio Station From Disappearing And Turn Off Pause Menu Music

This is just a tiny adjustment to make the Pirate
Radio station stop disappearing once you leave a
certain portion of the city.

The radio.xtbl file contains the radio station info for all the stations
including The Underground which is the pirate radio station. Search for 'pirate'
and you will find this:

<_Editor>
<Category>Radio Stations</Category>
</_Editor>
<Slot>6</Slot>
<Flags>
<Flag>Is Pirate</Flag>
</Flags>
</Station>
<Station>

It is located directly above the entry for The Mix

Now just make one change: remove the Is Pirate flag
so that your code looks like this:

<_Editor>
<Category>Radio Stations</Category>
</_Editor>
<Slot>6</Slot>
<Flags></Flags>
</Station>
<Station>

Now it will stay on the dial permanently.

Save your file and recompile your patch.

Now as an extra tip For anyone who might not know here is how you turn off
the music in the pause menu:

Open Music.xtbl and search for pause. Yo will find:

<Music_Set>
<Name>MUS_PAUSE_MENU</Name>
<AudioBanks>MUS SHARED</AudioBanks>
<Tracks>
<Music_Set>
<Track>
<Filename>MUS_PAUSE_MENU.wav</Filename>
</Track>
<Play_Time>0.51</Play_Time>
</Music_Set>
</Tracks>
<Play_Order>In Order</Play_Order>
<Min_Dist>2.0</Min_Dist>
<Max_Dist>30.0</Max_Dist>
<Volume>0.15</Volume>
<_Editor>
<Category>Special:SYS</Category>
</_Editor>
</Music_Set>

All you have to change is the '<AudioBanks>MUS SHARED</AudioBanks>'
entry. Just change the part that says MUS SARED to NONE like so:


<Music_Set>
<Name>MUS_PAUSE_MENU</Name>
<AudioBanks>NONE</AudioBanks>
<Tracks>
<Music_Set>
<Track>
<Filename>MUS_PAUSE_MENU.wav</Filename>
</Track>
<Play_Time>0.51</Play_Time>
</Music_Set>
</Tracks>
<Play_Order>In Order</Play_Order>
<Min_Dist>2.0</Min_Dist>
<Max_Dist>30.0</Max_Dist>
<Volume>0.15</Volume>
<_Editor>
<Category>Special:SYS</Category>
</_Editor>
</Music_Set>

Save your file and recompile your patch

If you just want to change the Pause Menu music then here is a template
to do so (Courtesy Idolninja)

<Music_Set>
<Name>MUS_PAUSE_MENU</Name>
<AudioBanks>MUS EZZZY</AudioBanks>
<Tracks>
<Music_Set>
<Track>
<Filename>EZZZY_TCHOUPA_TWIST.wav</Filename>
</Track>
<Play_Time>1.06</Play_Time>
</Music_Set>
</Tracks>
<Play_Order>In Order</Play_Order>
<Min_Dist>2.0</Min_Dist>
<Max_Dist>30.0</Max_Dist>
<Volume>0.2</Volume>
<_Editor>
<Category>Radio Stations:105.0 EZZZY FM</Category>
</_Editor>
</Music_Set>

Drop the edited file in the '1-MODDERS_-_PUT_YOUR_OWN_PERSONAL_MODS_HERE' directory located in
Gentlemen Of The Row/optional_mod_stuff and compile it. Drop your compiled files in your Saints Row 2
folder and enjoy your game.


Note: This does not effect any missions or activities at all, so it should be safe to use in your normal game.
 
Back
Top