/mob/verb/adminhelp(msg as text) set category = "Commands" set name = "adminhelp" if(!usr.client.authenticated) src << "Please authorize before sending these messages." return msg = copytext(sanitize(msg), 1, MAX_MESSAGE_LEN) if (!msg) return if (usr.muted) return for (var/mob/M in world) if (M.client && M.client.holder) M << "\blue HELP: [key_name(src, M)](X): [msg]" usr << "Your message has been broadcast to administrators." log_admin("HELP: [key_name(src)]: [msg]")