Custom Sirens
Toggle Siren allows you to use custom siren sounds. You can use any sound that comes with the game or add your own custom sounds.
Procedureβ
- Download the sound you want to use. The sound must be in
.wav
format. 1.1. If the sound is not in.wav
format, you can convert it e.g. using an online converter. - Download WMServerSirens
- Follow the instructions in the
README.md
file of the repository to install the resource and add your custom siren sounds. - In the
config.json
file addDLC_WMSIRENS\\SIRENPACK_ONE
to theCustomAudioBanks
list. - For each custom tone just enter the name of the tone from WMServerSirens and append
!DLC_WMSERVERSIRENS_SOUNDSET
to the end of the name.
Example Configurationβ
...
"CustomAudioBanks": [
"DLC_WMSIRENS\\SIRENPACK_ONE"
],
...
"DefaultSounds": [
"VEHICLES_HORNS_SIREN_1", // Default siren sound
"VEHICLES_HORNS_SIREN_2", // Default siren sound
"SIREN_CHARLIE!DLC_WMSERVERSIRENS_SOUNDSET", // Custom siren sound
],
"CustomSounds": {
"firetruk": [
"RESIDENT_VEHICLES_SIREN_FIRETRUCK_WAIL_01", // Default siren sound
"SIREN_ALPHA!DLC_WMSERVERSIRENS_SOUNDSET", // Custom siren sound
"SIREN_BRAVO!DLC_WMSERVERSIRENS_SOUNDSET", // Custom siren sound
],
},
...