ID:267783
 
mob/Stat()
stat("Description",src.dec)
stat("",)
stat("Name:",src.name)
stat("Key:",src.key)
stat("",)
stat("Location",src.loc)

how would I add a tab that lists users online, and their description (name, key)
add statpanel("Users") under Stat() and tab it to match the rest.
mob
Stat()
..()
statpanel("Users")
for(var/mob/M in world)
if(M.client)
stat(M)