mob/verb
Who()
usr<<"<b>Players Online:" // ...
var/counter=0 // the counter of All Online Players
for(var/mob/M in world) // U Know What is this ---
if(M.key) // Same
if(M.full_access == 0) // This is a thing of Sub
counter+=1 // This is Counter
usr<<"\icon [M.icon][M.name] <b>Level[M.Level]" // Non Sub
else
usr<<"\icon [M.icon]<b>[M.name] <b>Level [M.Level] <b>[M.key]" // Sub
usr<<"<b>[counter] Players Online"
i want my who appears Like this
1 Gohan Mistic 25 (Here if is sub) Level: 10000
2 blblblblb LuxMon Level: 9999
Like a Mini Ranking but i did alot of things to do it Any idea?