12.02.2014, 19:26
Normaly, it should be like this, I don't know what's AddCommas in your script, but try to update your format string to this
Also, be sure that your string can contain many numbers ..
like if your BizMoney = 10000, and your string character is string[1] , all what you will see is You have $1 in your vault;
I mean, your string should be "bigger", take a string of 64; string[64];
pawn Код:
format(string, sizeof(string), "You have $%d in your vault.", BizInfo[idx][bMoney]);
like if your BizMoney = 10000, and your string character is string[1] , all what you will see is You have $1 in your vault;
I mean, your string should be "bigger", take a string of 64; string[64];