mob/verb/say(msg as message)
view() << "\bold[src.name] says,\bold \"[msg]\""
mob/verb/ooc(msg as message)
world << "\green\bold [src.name] OOC:\bold\green"
mob/verb/Set_Name(newname as text)
set name = "[src.name] ([src.key])"
mob/verb/me(msg as message)
view() << "\bold [src.name]\bold [msg]"
Problem description:
My code was going fine until this happened, and I have no idea why. It happens at the beginning of each of my code files at the first object definition, it all used to be fine, but now this is happening! Could somebody please help? (Again.)
The "name" setting is a property of the verb.
There are a couple other things wrong with your snippet.
1. msg isn't used in ooc()
2. newname isn't used in Set_Name()