05.11.2012, 16:28
pawn Код:
public OnPlayerUpdate(playerid)
{
new strr[28];
new Float:colete[MAX_PLAYERS],
Float:lifee[MAX_PLAYERS];
GetPlayerArmour(playerid, colete[playerid]);
format(strr, 28, "~g~~h~~h~Vida: ~r~~h~~h~%f", lifee[playerid]);
TextDrawSetString(Textdraw6[playerid], strr);
format(strr, 28, "~g~~h~~h~Colete: ~r~~h~~h%f", colete[playerid]);
TextDrawSetString(Textdraw6[playerid], strr);
return true;
}