Page 1 of 1

Sound Question

Posted: March 4th, 2006, 1:06 am
by Nightmare
I was wondering to save time (and scripting) if I could copy and paste the origin, so have only one trigger and have it connected to all the sound orrigins to it. Is this possible?

Posted: March 4th, 2006, 1:41 am
by Drofder2004
sound origins?

Best way is through simple scripting..

Code: Select all

trig waittill ("trigger",user);
user playsound(sound);
btw, if you want the sound to play only on the person who triggered the sound then use...

Code: Select all

user playLocalSound(sound);

Posted: March 4th, 2006, 1:42 am
by Nightmare
sweet, I never knew you could do that, Thanks :D