Skip to main content

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​

  1. 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.
  2. Download WMServerSirens
  3. Follow the instructions in the README.md file of the repository to install the resource and add your custom siren sounds.
  4. In the config.json file add DLC_WMSIRENS\\SIRENPACK_ONE to the CustomAudioBanks list.
  5. 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
],
},
...