ID:150463
 
I have a music on verb

mob
verb
music_on()
set category = "Communication"
src<<sound('music1.mid',1)

but i cant figure out how to make another verb to turn the music off, if theres is a way can someone please tell me?
Jotdaniel wrote:
I have a music on verb

mob
verb
music_on()
set category = "Communication"
src<<sound('music1.mid',1)

but i cant figure out how to make another verb to turn the music off, if theres is a way can someone please tell me?

null usually represents nothing, so to set it to make no sound (null sound), you just use sound() in the same manner.
mob/verb/music_off()
set category = "Glabbeldeegook"
src << sound(null) //no more sound!


Understood?
In response to Vortezz
yes, thank you vortezz. i understand now, thats all i needed.