ID:271538
 
Ok this is the code

mob
verb
Village1()
set name = "Play 'California Love'"
set desc = "Californa Love By: Tupac Shakur (Rating: 5/5)"
set category = "Jukebox"
usr << sound('1.mid', 0)//Specifies to run a midi, change the file name to something else, for instance, usr << sound('newmusic.mid', 1)
Village2()
set name = "Play 'I Ain't Mad Atcha'"//Sets name.
set desc = "I Ain't Mad Atcha By: Tupac Shakur (Rating: 4/5)"
set category = "Jukebox"
usr << sound('2.mid', 0)
Dungeon1()
set name = "Play 'In The End'"
set desc = "In The End By: Linkin' Park (Rating 5/5)"//Shows a description when the users mouse is over this verb.
set category = "Jukebox"
usr << sound('3.mid', 0)
Dungeon2()
set name = "Play 'Numb'"
set desc = "Numb By: Linkin' Park (Rating 3/5)"
set category = "Jukebox"//Sets panel.
usr << sound('4.mid', 0)
Stop()
set name = "Stop Music"
set desc = "Stop All Music Instantly"
set category = "Jukebox"//Sets panel.
usr << sound('boing_3.wav', 0)


So how would i be able to stop the song right in the middle of it cause on this if i play another song it overlaps the one that is currently playing
Still need help
In response to Level 6 God
Set the channel to a non-zero integer. Or whatever. Just gotta set them all to the same channel.
In response to Kaiochao2536
Didn't help it at all it just repeats the song over, and over
In response to Level 6 God
That's the repeat argument, not the channel <.<