Author Topic: Help me make the sound pack!  (Read 488 times)

Help me!
I need help on making the sound pack for my new game, Six Nights at Microsoft Sam's. I made the sounds in Mono, and typed this in the server.cs file:

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

datablock AudioProfile(SNAS_Night1Call : SNAS_Sounds)
{
 filename = "./SNAS_Night1Call.wav";
};

datablock AudioProfile(SNAS_Night2Call : SNAS_Sounds)
{
 filename = "./SNAS_Night2Call.wav";
};

datablock AudioProfile(SNAS_Night3Call : SNAS_Sounds)
{
 filename = "./SNAS_Night3Call.wav";
};

datablock AudioProfile(SNAS_Night4Call : SNAS_Sounds)
{
 filename = "./SNAS_Night4Call.wav";
};

datablock AudioProfile(SNAS_Night5Call : SNAS_Sounds)
{
 filename = "./SNAS_Night5Call.wav";
};

datablock AudioProfile(SNAS_Night6Call : SNAS_Sounds)
{
 filename = "./SNAS_Night6Call.wav";
};

It doesn't show up on the Add-ons list.
WHAT did I do wrong?


Look at your console.log and it'll tell you what's wrong with your code.
It should also mention some other errors if there's other problems.