ID:266485
 
I need help so when someone logs in there would be a stat panel that says Chatters it would add them there. How can i do this?
mob/Stat()
..()
statpanel("Chatters")
for(var/mob/M in world)
stat(M)
Thief jack wrote:
I need help so when someone logs in there would be a stat panel that says Chatters it would add them there. How can i do this?

A few ways will do. Nadrew's suggestion will work. If you have a list of users, then this will work also:
mob
Stat()
statpanel("Chatters")
stat(users)

Lummox JR
In response to Lummox JR
How would I make it so it would only go on there if I used a verb on him/her?
Nevermind