ID:178972
 
I thought I saw different colored names in a stat panel in somebody's game, but it doesn't seem to be working for me:

for(var/mob/player/P in red_team)
stat("[P.name]","RED")


am i missing something?

Thanks.
dramstud wrote:
I thought I saw different colored names in a stat panel in somebody's game

You were hallucinating!

Currently the name fields are red, values are black, and suffixes are blue. Eventually we'll allow you to configure those to your liking (along with fonts and background colors and such).
In response to Tom
Tom wrote:
You were hallucinating!

Currently the name fields are red, values are black, and suffixes are blue. Eventually we'll allow you to configure those to your liking (along with fonts and background colors and such).

Yep, and you can sort of simulate those three colours to be where you want it. For example, to have the stats in red, you could go like so:
mob
Stat()
statpanel("Stats")
stat("HP: [hp]") //your HP number will be in red
stat("MP: ",mp) //your MP number will be black