ID:161725
 
Ok I have this system, where everyone in the game appears in a tab, and beside them I want their location to appear. But when I add their location, it stops showing the person's icon, it only shows their name instead.

This works, it shows their icon:
mob/Stat()
statpanel("Who")
for(var/mob/A) stat(A)

But now I cant figure out how to put the extra information without their icon disappearing in the tab for some reason.

Any help?

Also yes I realize I could just have their suffix set to their location but I dont want to do it that way for a very specific reason which I guess isnt relevant here. Plus their suffix is already used for something else.
mabey try adding
mob/Stat()
statpanel("Who")
for(var/mob/A) stat(A)
stat([A]'s location: [Aloc])


you'd probably have to add a proc to find A's location, but it should work, i hope
In response to RanEsu
Their icon still disappears...Somebody on here must know the trick to it <_< Garthor probably does
mob/Stat()
statpanel("Who")
for(var/mob/A)
stat(A,"[A.x] [A.y] [A.z]")

Maybe that? =\
In response to Akito Bakasui
The icon still disappears, I dont know why. If you put anything besides "stat(A)" it just disappears.
Try stat("textlolz",A)
In response to Darkmag1c1an11
Darkmag1c1an11 wrote:
Try stat("textlolz",A)

Nope, you can even try it yourself, it'll show the text, but not A in any way.