/client/proc/cmd_admin_say(msg as text) set category = "Special Verbs" set name = "Asay" //Gave this shit a shorter name so you only have to time out "asay" rather than "admin say" to use it --NeoFite set hidden = 1 if(!check_rights(0)) return msg = copytext(sanitize(msg), 1, MAX_MESSAGE_LEN) if(!msg) return if(check_rights(R_ADMIN,0)) for(var/client/C in admins) C << "ADMIN: [key_name(usr, C)] (JMP): [msg]" else for(var/client/C in admins) C << "ADMIN: [key_name(usr, C)]: [msg]" log_admin("[key_name(src)] : [msg]") feedback_add_details("admin_verb","M") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!