10.02.2013, 23:13
Turn the float into an integer using floatround. So you might end up with something like this:
pawn Код:
new str1[24],Float:health;
GetPlayerHealth(playerid,health);
fomat(str1,sizeof(str1),"Health: %i",floatround(health,floatround_round));