04.07.2013, 14:58
Quote:
Health ranges from 0 to 100.0, so if you set your health to 9999.0 its the same as 100.0.
Try setting your health to 99.0. |
Код:
CMD:gethealth(playerid, params[]) { new string[256], Float:shit; GetPlayerHealth(playerid, Float:shit); format(string, sizeof(string), "health is %f", shit); SendClientMessage(playerid, -1, string); return 1; }