Reply to Re: How to stop playsounds?
If you don't have an account, just leave the password field blank.
You can stop a sound, similar to what Rabid said but you need to use sound_set_kill() instead of just kill().
//start playing sound
int &sound = playsound();
//stop playing sound
sound_set_kill(&sound);
//start playing sound
int &sound = playsound();
//stop playing sound
sound_set_kill(&sound);







