ID:160927
 


What I would like is to be able to display players name, and their class side by side, going from a list. I think I attempted the wrong way, I put players into a multidimentional list with their class and it displays below still.
Try list(Pirion="Human")
In response to Nickr5 (#1)
no, what i have is :

mob/Stat()
for(var/X in playersl)
statpanel("Players",X)

but I want it to show X.class in the third colum, but it wont let me.
In response to Pirion (#2)
if(statpanel("Players"))// if() reduces lag.
stat(X,X.class)
In response to Pirion (#2)
mob/Stat()
for(var/mob/X in playersl)
statpanel("Players",X,X.class)