18.03.2011, 17:01
Believe me, i have a code, which is doesn't work properly because of this inaccuracy. Otherwise i'd not have started this topic 
Just another example:

Just another example:
pawn Код:
// SomeStats[playerid] = 40.0
new str[32];
format(str,sizeof(str),"Your xxx is %.1f !",SomeStats[playerid]); // "Your xxx is 40.0 !"
SendClientMessage(playerid,COLOR_WHITE,str);
//....
//Now SomeStats[playerid] = 40.1
new str[32];
format(str,sizeof(str),"Your xxx is %.1f !",SomeStats[playerid]); // It will still show "Your xxx is 40.0 !"
SendClientMessage(playerid,COLOR_WHITE,str);

