Since version 0.2 audio archives (.awc) can now be replaced using Lenny's Mod loader. The syntax is the same as for any file replacement, but you need to make sure you are using the audio:/ path.
Example for vehicles.awc
To replace your vehicles.awc (located in RESIDENT.RPF) with a modified version, you can use the code below. This assumes you have a modified vehicles.awc in a folder called audio (the name can be any). It is important to use the audio:/ mount name.
<FileReplacement> <GamePath>audio:/sfx/resident/vehicles.awc</GamePath> <FilePath>audio/vehicles.awc</FilePath> </FileReplacement>
Full install.xml example
A full example ready to be copied can be found below.
Spoiler
<EasyInstall> <Name>My New Siren Audio</Name> <Author>You</Author> <Version>1.0</Version> <Link></Link> <Metadata> </Metadata> <Replacements> <Replacement name="Siren Pack Audio"> <FileReplacement> <GamePath>audio:/sfx/resident/vehicles.awc</GamePath> <FilePath>audio/vehicles.awc</FilePath> </FileReplacement> </Replacement> </Replacements> </EasyInstall>
Recommended Comments