mob/verb
music_stop()
set name = "Music Stop"
set hidden = 1
usr<<sound(null)
return
Problem description: I have music playing when the game starts and the verb is listed as a menu item, but will not work when I click it. The music continues to play, regardless. I'd like it to stop any sounds when the verb is activated.
src<<sound('Music.mid',channel=1)
src<<sound(null,channel=1)