mob/verb/Say(txt as text)
usr << "You say, '[txt]'
oview <<" [usr] says, '[txt]'"
right?
well people could just hold dow enter and it spams everyone so presumming you put your verb name as Say(txt as text you would change it into this.
mob/verb/say(txt as text)
if(txt)
if(length(txt)<200)
set category = "Soical" //What category it is in.
usr << "You say, '[txt]'" //what you see
oview() << "[usr] says, [txt]" //What everyone else sees
if(txt) check if there is a message there
if(length(txt)<200) checks if theres a message and if there is limits it to 200 character(letter number ect)