Author Topic: Assistance on making Sounds  (Read 500 times)

I'm using an existing RTB addon but I'm changing it to my things and I opened server.cs and I looked at it going
"what?"

I don't want to accidentally mess up. Here's part of the file:

datablock AudioProfile(GlAper)
{
   filename = "./Glados_Aperture.wav";
   description = AudioClosest3d;
   preload = false;
};

(replacing the Glados sound pack)

just that set of lines repeats so I'm assuming I just replace it with what I want.

Am I correct?

Quote
just that set of lines repeats so I'm assuming I just replace it with what I want.

Am I correct?

what?

Code: [Select]
datablock AudioProfile(<name>sound)
{
   filename = "./<filename>.wav";
   description = AudioClosest3d;
   preload = true;
};

replace <name> with a unique name that (maybe) accurately describes the sound

replace <filename> with the actual name of the sound file

put the .wav sound file in the folder with the server.cs you're editing
« Last Edit: April 27, 2014, 05:57:16 PM by takato14 »