29.12.2017, 12:40
Quote:
Код:
forward NameTag(playerid); public NameTag(playerid) { new Float:health,Float:armour, playerid,string[40]; GetPlayerHealth(playerid,health); GetPlayerArmour(playerid,armour); format(string,sizeof(string),"%d and %d armour",health,armour); UpdateDynamic3DTextLabelText(PlayerInfo[playerid][pSpecialTag], -1, string); return 1; } |