03.09.2017, 10:49
It is a float you can use format this way:
PHP код:
new string[25];
new Float:num = 52.74377;
format(string, sizeof(string), "Number is: %.2f", num);
SendClientMessage(playerid, -1, string);
Код:
Output: Number is: 52.74

