ID:179628
 
mob
proc
say(msg as text)
world << "[usr]: [msg]"
ic(msg as text)
view(5) << "[usr]: [msg]"
emote(msg as text)
view(5) << " [usr] [msg]"


mob
Stat()
statpanel("social")
say()
ic()
emote()

alright no errors. but when you log in it constantly says on the text screen

[user name]:
[user name]:
[user name]:
etc.
..over and over again

of course replacing user name with the actual [name] variable that was selected. can someone tell me why?
Selderan wrote:
mob
proc
say(msg as text)
world << "<font color=#553916>[usr]: [msg]"
ic(msg as text)
view(5) << "<font color=#76562A>[usr]: [msg]"
emote(msg as text)
view(5) << "<Font color=#76562A> [usr] [msg]"

make that proc a verb, thats how you get things into the statpanel.
In response to Sariat
where would i throw in that verb command it does the same thing
Take out everything in Stat() and put set category = "Social" in each of the verbs. Like this:

mob
verb
say(msg as text)
set category = "Social"
world << "[usr]: [msg]"
ic(msg as text)
set category = "Social"
view(5) << "[usr]: [msg]"
emote(msg as text)
set category = "Social"
view(5) << "[usr] [msg]"