27.01.2011, 23:37
(
Последний раз редактировалось On_Top_Non_Stop; 28.01.2011 в 03:11.
)
Hello. I'm trying to pass the 2147483647 limit on variables by using two variables.
One variable for an amount from 0-999 and another for the rest.
If your wondering why I need such high numbers its basically all the players money stats into one stat.
I need a way of doing it so i can format and display it to the player like so
So.. what's the best way to go about this problem without using bits?
Cheerse.
One variable for an amount from 0-999 and another for the rest.
If your wondering why I need such high numbers its basically all the players money stats into one stat.
I need a way of doing it so i can format and display it to the player like so
pawn Код:
format(string, sizeof(string)"bla bla bla a total of $%d%d",thousands, hundreds);
Cheerse.