25.07.2016, 08:38
Remove that "FormatNumber" include file, and add this function at somewhere in your gamemode:
PHP код:
stock FormatNumber(number, const separator[] = ",")
{
new output[15];
format(output, sizeof(output), "%d", number);
for(new i = strlen(output) - 3; i > 0 && output[i-1] != '-'; i -= 3)
{
strins(output, separator, i);
}
return output;
}