02.12.2016, 00:19
I resolved with function, stock it.
But how i obtain that code? this is col_gyellow 0xADFF2FAA
I guess the good code is ADFF2F, right?
EDIT: Thanks man with the string colors, now it's ok.
i put your function
But the value it's same like 50000$, not 50.000. I have to add another codes in my setmoney cmd?
But how i obtain that code? this is col_gyellow 0xADFF2FAA
I guess the good code is ADFF2F, right?
EDIT: Thanks man with the string colors, now it's ok.
i put your function
PHP код:
stock NumberWithSign(const number, const sign[2] = "'")
{
new str[10 + EOS];
format(str, sizeof(str), "%i", number);
for(new j = strlen(str)-3; j > 0; j -= 3)
{
strins(str, sign, j);
}
return str;
}

