19.09.2010, 08:20
(
Последний раз редактировалось RyDeR`; 19.09.2010 в 08:31.
)
@smeti:
Ah, never tried in the negative way.. But no problem, it's fixable.
I will fix as quick as possible.
EDIT: Fixed. You can try again if you wish. Also can you please delete the quote? Because the wrong code is in there.
https://sampforum.blast.hk/showthread.php?tid=38965&p=843781
Ah, never tried in the negative way.. But no problem, it's fixable.
I will fix as quick as possible.
EDIT: Fixed. You can try again if you wish. Also can you please delete the quote? Because the wrong code is in there.
pawn Код:
stock convertNumber(value)
{
new
string[24]
;
format(string, sizeof(string), "%d", value);
for(new i = (strlen(string) - 3); i > (value < 0 ? 1 : 0) ; i -= 3)
{
strins(string[i], ",", 0);
}
return string;
}