Following from the last guide How to import Weapons from SP to MP in Black Ops using Mod Tools this will teach you how to add sounds for the weapons.
This tutorial also assumes you have common *modding* knowledge & that you have a text editor
This is also my first real guide that I put together XD
We will start by creating the directories
In your mod directory create a new folder called "soundaliases"
Inside that folder create another folder called "zones"
Once again inside of the zones folder create two more folders called: "radverb" and "snapshot"
Now the CSV files
you will create four different CSV files named:
In every CSV file place these lines of code at the top of the file (this is how the game interprets the data)
default_mymod.all.csv and default_mymod.english.csv:
http://pastebin.com/NQzjEdVd
default_mymod.radverb.csv:
http://pastebin.com/YDbGLqGc
default_mymod.snapshot.csv:
http://pastebin.com/fhA8BZ9Q
Move "default_mymod.snapshot.csv" to "soundaliases/zones/snapshot"
Move "default_mymod.radverb.csv" to "soundaliases/zones/radverb"
Move "default_mymod.all.csv" to "soundaliases/zones"
Move "default_mymod.english.csv" to "soundaliases/zones"
Finding the lines of code to import the weapon sounds
Start off by navigating to your black ops directory then raw\soundaliases\zones\
Open the file called DEFAULT_SP.all.csv in a text editor
Now press CTRL+F to open the search box
You will search for the name of your gun that you imported from SP
I used ray_gun_zm, so I am going to search for "wpn_ray_" (without quotes)
Select the entire block of text until you see the last wpn_ray_ line.
Now copy that entire selected block of text and paste it into the file: "<your mod>/soundaliases/zones/default_mymod.all.csv"
Importing the CSV table in Mod Tools
Click on the Edit Zone Source button
then as explained in the picture below add the line: sound,default_mymod
Now just compile your mod and you should be set!
Note: If you get the error "ERROR: aliases failed to load" just ignore it, your sounds will still load.
Any errors in this guide or need something explained? Post something below.
This tutorial also assumes you have common *modding* knowledge & that you have a text editor
This is also my first real guide that I put together XD
We will start by creating the directories
In your mod directory create a new folder called "soundaliases"
Inside that folder create another folder called "zones"
Once again inside of the zones folder create two more folders called: "radverb" and "snapshot"
Now the CSV files
you will create four different CSV files named:
Code:
default_mymod.all.csv
default_mymod.english.csv
default_mymod.snapshot.csv
default_mymod.radverb.csv
default_mymod.all.csv and default_mymod.english.csv:
http://pastebin.com/NQzjEdVd
default_mymod.radverb.csv:
http://pastebin.com/YDbGLqGc
default_mymod.snapshot.csv:
http://pastebin.com/fhA8BZ9Q
Move "default_mymod.snapshot.csv" to "soundaliases/zones/snapshot"
Move "default_mymod.radverb.csv" to "soundaliases/zones/radverb"
Move "default_mymod.all.csv" to "soundaliases/zones"
Move "default_mymod.english.csv" to "soundaliases/zones"
Finding the lines of code to import the weapon sounds
Start off by navigating to your black ops directory then raw\soundaliases\zones\
Open the file called DEFAULT_SP.all.csv in a text editor
Now press CTRL+F to open the search box
You will search for the name of your gun that you imported from SP
I used ray_gun_zm, so I am going to search for "wpn_ray_" (without quotes)
Select the entire block of text until you see the last wpn_ray_ line.
Now copy that entire selected block of text and paste it into the file: "<your mod>/soundaliases/zones/default_mymod.all.csv"
Importing the CSV table in Mod Tools
Click on the Edit Zone Source button
then as explained in the picture below add the line: sound,default_mymod
Now just compile your mod and you should be set!
Note: If you get the error "ERROR: aliases failed to load" just ignore it, your sounds will still load.
Any errors in this guide or need something explained? Post something below.