Stream Sounds
This tutorial show, how to replace default sound for your server.
Suggested tools
Creating the resources
- Get any custom sound on mods website.
- If they are in a
dlc.rpf
, open it with the suggested tools and find.awc
files. - Now follow the Folder structure below.
Folder Structure
soundtutorial/
├─ stream/
│ ├─ x64/
│ │ ├─ audio/
│ │ │ ├─ sfx/
│ │ │ │ ├─ resident/
│ │ │ │ │ ├─ example_sirens.awc
│ │ │ │ ├─ animals/
│ │ │ │ │ ├─ example_animal.awc
│ │ │ │ ├─ weapons_player/
│ │ │ │ │ ├─ example_smg_sound.awc
├─ resource.toml
├─ stream.toml
resource.toml
type = 'dlc'
main = 'stream.toml'
client-files = [ 'stream/*' ]
stream.toml
files = [ ]
[meta]
'stream/x64/audio/sfx/resident' = 'AUDIO_WAVEPACK'
'stream/x64/audio/sfx/weapons_player' = 'AUDIO_WAVEPACK'
'stream/x64/audio/sfx/animals' = 'AUDIO_WAVEPACK'
You will need to enter the correct name of each basic sound resource in gta (resident, weapons_player, animals etc....)