ID:177333
 
How do I show people that are on my game? Like show it in a stat panel?

Punkrock546
mob/Stat()
statpanel("Who")
for(var/mob/M in world)
stat("[M]","[M.key]")
mob/Stat()
..()
var/list/l = list()
for(var/mob/m as mob in world)
if(m.client)
l.Add(m)
statpanel("People")
stat(l)
In response to Siientx
Thanx

Punkrock546