NoMansSky:Adding or Replacing Audio: Difference between revisions

From Step Mods | Change The Game
No edit summary
Line 84: Line 84:


{{NMSPageClose}}
{{NMSPageClose}}
[[Category:No Man's Sky]][[Category:NMS-Tutorial]]

Revision as of 22:54, July 29, 2020

Template:TOC right

Getting Started[edit | edit source]

Before you begin you'll need the following:

Optional:

Unpacking Audio[edit | edit source]

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 files. This is easily done by dragging said .pak file onto the PSARC Tool executable. Once complete, 2 folders will be created. We will be using the AUDIO folder.

Finding Which Sounds to Replace[edit | edit source]

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 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>

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[edit | edit source]

Template:Notice Small 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:

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

In this case I ran python BNKcompilerWCmd.py NMS_AUDIO_PERSISTENT ./tutorial ./tutorial extract. Your directory should now look like the example below. Inside your specified Output Path will be all the sounds contained in the provided .BNK file.

Converting to WEM[edit | edit source]

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.

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.

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

Replacing The Sounds[edit | edit source]

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.

Template:Notice Small

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.

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[edit | edit source]

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.

Template:NMSPageClose