posted 04-25- 02:01 PM CT (US) i want to have wavs instead of midis. i have 5 songs totalling 7 mb which is enough for the game, but the problem is i cant figure out how to stop them from playing when i want them to. i cant find any examples where wavs are used for the soundtrack and the dinkc.txt uses void sound_set_kill(int bank); but i cant get this to work. what should i use for the int bank?
redink1
posted 04-25- 05:07 PM CT (US)
Create a global variable called &song; or something similar.
Then, at the start of the song, use this:
&song = playsound(blahblah);
Then, &song is the 'bank', and you can use sound_set_kill and sound_set_vol to control the wav file.
joshriot
posted 04-25- 05:55 PM CT (US)
thanks.
FF4LIFE
posted 04-25- 09:11 PM CT (US)
My original game (okaly-D Dink) i used wavs, and they work really good...so yeah, i can probebly answer any further questions you have.