How do I show people that are on my game? Like show it in a stat panel?
Punkrock546
ID:177333
Sep 21 2002, 8:08 am
|
|
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 |
statpanel("Who")
for(var/mob/M in world)
stat("[M]","[M.key]")