29.10.2018, 12:54
Hello there
I want to do something to get the EXACT player's health
I did something like this:
but it was only show player health e.g. (100.00 or 85.00 or 44.00) but I want a script to show EXACT player health e.g. 85.56 or 65.10 or 44.98 .. and like these..
If you know what should I do tell me...
I want to do something to get the EXACT player's health
I did something like this:
PHP код:
new Float:Health;
GetPlayerHealth(playerid, Health);
new pingss[128];
format(pingss, sizeof(pingss), "%.2f", Health);
PlayerTextDrawSetString(playerid, HP_TD[playerid], pingss);
If you know what should I do tell me...