ID:972064
 
(See the best response by Lavitiz.)

Code:proc
beginlogin()
var/sound/S = sound('title.ogg')
usr << S


mob/verb/Toggle_Starting_Music()
set category = "Tools"


Problem description: I have no idea how I would be able to stop the music if the player executes that verb. I looked at the reference, but didn't find anything, is there a certain command of such to stop the music from playing?

Thanks!
Best response
src<<sound(null)

Should null any sound currently playing to a mob.
Thanks, for the life of me I couldn't find anything like that. Solved :D