ID:176870
 
how would i make a statpanel that shows all the players in icon form lined up downward. like in the fast and the furious
var/list/Players = list()
mob/Login()
Players += src
..()
mob/Logout()
Players -= src
del(src)

mob/Stat()
statpanel("[Players.len] Players Online")
for(var/mob/M in Players)
if(M.client)
stat(M)


Hope that helps

In response to Weedman
but it says "Game1.dm:81:error: proc definition not allowed inside another proc"
for the line that says:
"for(var/mob/M in Players)"
also how do I make the wealth value fall under "Inventory"? It always goes to "Stats" and whenever I try to fix that there is an error.