No Man's Sky Modding Wiki
Advertisement

Getting Started[]

Before you begin you'll need the following:

Optional:

Unpacking Audio[]

Explorer 2017-08-17 13-56-46

The first step to replacing Audio is unpacking it. If you haven't already unpacked the whole game you can unpack just the audio by using the PSARC Tool on NMSARC.5B11B94C.pak which contains all the audio. This is easily done by dragging said .pak file onto the PSARC Tool. Once finished 2 folders will be created. We will be using the AUDIO folder.



Finding Which Sounds to Replace[]

Sublime text 2017-08-17 16-04-28

Once you have your files unpacked, you must find the correct IDs for the files you want to replace. One way is to open the .xml file for the .BNK file of the same name. For this tutorial we'll try to replace sounds from the NMS_AUDIO_PERSISTENT.BNK (This will be where the majority of sounds you'll want to replace will be). So we open NMS_AUDIO_PERSISTENT.xml in the text editor of your choice and use the search feature to locate a sound. In this case we'll choose the weapon melee sound (Wpn_Pl_Melee). Below is an example

<File Id="385939682" Language="SFX>

<ShortName>Weapons\Wpn_Pl_Melee_01.wav</ShortName>

<Path>SFX\Weapons\Wpn_Pl_Melee_01_9344E057.wem</Path>

</File>

Explorer 2017-08-17 14-38-30

The File Id is what we need to find our sound file. Also note that NMS uses various sounds and cycles through them so in order to fully replace a sound you must replace each one. For this example there are 9 melee sounds (01 - 09). Once you have taken note of the ID's for each sound, you will need to find out if they are Streamed or Included. You can figure this out by searching for the ID's in your unpacked AUDIO folder. If the ID's aren't found in the folder then they will be Included which means they are inside of a BNK file. In our case the ID "385939682" was found inside of our AUDIO folder so it is a Streamed sound.



Extracting Included Sounds[]

If you are dealing with Streamed sounds you can skip this section

Explorer 2017-08-17 14-56-07

Included sounds are sounds that exist within a Wwise soundbank (.BNK file). In order to replace these you need to extract the sounds using Monkeyman's BNK Compiler. Begin by extracting the provided .zip which contains 2 python scripts (BNKcompilerWCmd.py and fnvhash.py). Once extracted you want to copy the BNK your sound is in to the same directory. Now you're going to open Command Prompt in that directory and run the script with the params as follows

Cmd 2017-08-17 15-16-04

python BNKcompilerWCmd.py {BNK name(no extension)} {Source Path} {Output Path} {Mode(extract/recompile)}

Explorer 2017-08-17 15-04-56

In this case I ran python BNKcompilerWCmd.py NMS_AUDIO_PERSISTENT ./tutorial ./tutorial extract. Your directory should now look like this



Inside your specified Output Path will be all the sounds contained in the provided .BNK file.

Converting to WEM[]

Now that you have found the files you want to replace you're going to need files to replace them with. All sounds will have to be WEM and we achieve this by using Wwise. First create a Project in Wwise. Then you'll want to import all the sounds you want converted into a Wwise project. These sounds will have to be .wav files so convert them if they're not already.

Wwise 2017-08-17 15-18-29
2017-08-17 15-14-12
Wwise 2017-08-17 15-14-39





Once imported your files will appear inside of your project explorer. After that is done you will go back to the Project menu and click Convert All Audio Files... and hit Ok once the window appears.

Wwise 2017-08-17 15-20-15
2017-08-17 15-20-01







Once the conversion is complete you will find your WEM files in "Documents\WwiseProjects\{Project Name}\.cache\Windows\SFX".

Replacing The Sounds[]

Explorer 2017-08-17 15-33-18

Now that all your sounds are converted into WEMs you'll want to rename them to the IDs we collected earlier. Each of your sounds should match the ID of a sound you are trying to replace. This is very important for Included files are there is no way to currently add new sounds and can mess up your mod if you do.

If you are dealing with Streamed sounds you can skip the rest of this section

Once you have renamed your WEM files you're going to return to your directory with the Python scripts. Copy all of your files into the Output Path your specified. Please note the amount of files being replaced should match the total files you're copying over.

Explorer 2017-08-17 15-38-58
Explorer 2017-08-17 15-38-14







Once the files have been replaced you will run the python script again except this time with the recompile parameter.

Example:

python BNKcompilerWCmd.py NMS_AUDIO_PERSISTENT ./tutorial ./tutorial recompile

This will recompile the BNK and make it ready to be packed.

Packing the Mod[]

Once you have your new WEMs (for streamed sounds) or recompiled BNKs (for included sounds) you are ready to pack your mod. Make a new folder called AUDIO and copy into it your WEMs or BNKs. Then drag the entire AUDIO folder into the PSARC Tool and it will pack them up into a psarc.pak file. Once this is finished you can rename it as you wish and place it in your Mods folder to test.

Explorer 2017-08-17 15-47-51
Explorer 2017-08-17 15-48-12
Explorer 2017-08-17 15-48-29
Explorer 2017-08-17 15-49-40
Advertisement