ID:266549
 
how do u make a mute command?if you know tell me.thanks.

-------------majin noobs------------------------------------
I'm sure if you took the time to think about it, you could do this on your own.

mob/var/mute = 0

mob/verb/Mute(mob/M as mob in world)
if(M.mute) M.mute = 0
else M.mute = 1

mob/verb/Say(msg as text)
if(mute) return
world << "[usr]: [msg]"
In response to Foomer
Thanks!
Majin Noobs wrote:
how do u make a mute command?if you know tell me.thanks.

-------------majin noobs------------------------------------

Maybe thats the reason my My Mute Demo came out.