29.12.2017, 12:49
Код:
forward NameTag(playerid); public NameTag(playerid) { new Float:health,Float:armour, string[40]; GetPlayerHealth(playerid,health); GetPlayerArmour(playerid,armour); format(string,sizeof(string),"%d hp and %d armour",health,armour); UpdateDynamic3DTextLabelText(PlayerInfo[playerid][pSpecialTag], -1, string); return 1; }
Код:
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart) { new string[40],Float:hp,Float:ar; GetPlayerArmour(playerid,ar); GetPlayerHealth(playerid,hp); format(string, sizeof(string), "%d hp and %d armour",hp,ar); UpdateDynamic3DTextLabelText(PlayerInfo[playerid][pSpecialTag], -1, string) return 1; }