ID:178171
 
mob/player
Hero
verb
say(msg as text)
set category = ("Communication")
view(src) << "[usr] says:[msg]"

the errors are:
verb.dm:5:error:set :invalid proc definition
verb.dm:6:error:<< :invalid proc definition

???
bad lines are:
set category = ("Communication") error 1
view(src) << "[usr] says:[msg]" error 2
mob/verb/Say(T as msg)
world << "[usr]: [T]"

You mis-indented
Get rid of the parentheses in set category and tab set and view()
In response to Super16
thnx super
In response to Sariat
Sariat wrote:
mob/verb/Say(T as msg)
world << "[usr]: [T]"

You mis-indented


he did more then miss indented he put
set category = ("Communication")


shouldn't be no ( or )

Error 2

view(src) << "[src] [T]"


if you want yourself personnaly to hear it, and others as well do this.

mob/verb/Say(msg as text)
view() << "[usr] Says, [msg]"


Now, you can have it so you hear yourself say for instance in chat it says.. You say, then your text.
And to the people in your view they see RaeKwon: Hey all!
when you only see..
You say, Hey all!
do somthing like this

mob/verb/Say(msg as text)
usr << "You Say, [msg]"
oview() << "[usr] Says, [msg]"


hope that explains the quest on the say command!

RaeKwon
In response to RaeKwon
Umm Raekwon problem solved already :-p a little late there lol