Mute(var/mob/M in world)
set category = "GoD"
var/Choice = alert("Turn Mute on or off for [M]?", "Mute Player", "On", "Off")
if (Choice == "On")
M << "You are now muted."
M.Mute = 1
else
M << "You are no longer muted."
M.Mute = 0
Problem description:I am trying to make my gm verbs into clickable buttons on the screen. But when i put in my buttons icon into the verb, then put in the Click(), remove set category and move all of margins 1 tab over, I get many errors, can you please tell me how to make it work? Thank you.
To solve this, we need your hud code, the errors genorated, and the code after you remove most things.