18.12.2015, 09:14
Its 2 seconds of coding.
Format the string and use TextDrawSetString, isnt that hard at all.
PHP код:
new string[64];
new Float:HP;
GetPlayerHealth(playerid,HP);
format(string, sizeof(string), "%.0f%", HP);
TextDrawSetString(myTextdraw, string);

