ID:176740
 
how can i make something on a statpanel that has a list of all the players on the same z level as you? also, how can i have something on the statpanel that shows a list of all the players online, in order of who has the most kills?
For your first question,

mob
Stat()
statpanel("Who's Here")
for(var/mob/M in world)
if(M.z==usr.z)
if(!M.client)
return
else
stat("[M]")
As for your second question I do not know.