Author Topic: How do i make sounds?  (Read 495 times)

Hello everyone, scince im no good at making mods, i thought id go into Sound, music and print making....


Right now im good at music, but what about sounds, i do not know how to make sounds, all i know is that it isnt just a .wav.

If anyone can help me, please do.

I think the only thing that is confusing me is what to put in the server.cs, and some other things... Uhh, yeah.

Well, I started out on making sounds so maybe this will help you make better mods, do you want a script? I have some, its really easy. Here I'll post one

Code: [Select]
datablock AudioProfile(Techno_Loop1_Sound)
{
filename = "./Techno_Loop1.wav";
description = AudioClosest3d;
preload = false;
};

datablock AudioProfile(Techno_Loop2_Sound : Techno_Loop1_Sound)
{
filename = "./Techno_Loop2.wav";
};

datablock AudioProfile(Techno_Loop3_Sound : Techno_Loop1_Sound)
{
filename = "./Techno_Loop3.wav";
};

datablock AudioProfile(Techno_Loop4_Sound : Techno_Loop1_Sound)
{
filename = "./Techno_Loop4.wav";
};

datablock AudioProfile(Techno_Loop5_Sound : Techno_Loop1_Sound)
{
filename = "./Techno_Loop5.wav";
};
Now this was for some techno sounds I made, I have only made two sounds. And you need to package it in a zip file with a description.txt and your sounds (in a .wav format) along with a server.cs as you already know.
« Last Edit: March 31, 2009, 06:08:23 PM by AGlass0fMilk »