if(sameteam && ent.healthvalue > 0)
{
if(ent.armorvalue)
- s = strcat(s, " (", ftos(ent.healthvalue), "|", ftos(ent.armorvalue), ")");
+ s = strcat(s, "^7 (^1", ftos(ent.healthvalue), "^7|^2", ftos(ent.armorvalue), "^7)");
else
- s = strcat(s, " (", ftos(ent.healthvalue), ")");
+ s = strcat(s, "^7 (^1", ftos(ent.healthvalue), "^7)");
// if team healing is enabled, mark the team mate as possible to heal
if(ent.healthvalue < teamheal_max)
- s = strcat(s, " [HEAL]");
+ s = strcat(s, "^7 [^5HEAL^7]");
}
float width;