Blockland Forums > Help
Sound making
Pages: (1/1)
John1701:
How do I package sounds?
CrazyGoodDude:
Simply, what you do is make a sound file into .wav
Then you put all the sound files into the folder
Then you make a server.cs file and put this script inside for every sound
--- Code: ---datablock AudioProfile("Name For Game")
{
filename = "./'file name.wav";
description = AudioClosest3d;
preload = false;
};
--- End code ---
So if your sound was called ST_Aux_Power you would put this
--- Code: ---datablock AudioProfile(ST_Aux_Power)
{
filename = "./ST_Aux_Power.wav";
description = AudioClosest3d;
preload = false;
};
--- End code ---
And if your file still does not work, send it to me using mediafire.
John1701:
Thank you, I will try that.
Pages: (1/1)