02.12.2011, 13:24
Hey all. I've got a really strange problem and I don't know where I have to look in my script.
Once my variable has reached 60000 it reduces to like 5000 or near that. I just can't get more then 60.000
I'm using rBits. This is how I store my cash.
Bit16: g_Cash <MAX_PLAYERS>,
When I use this cmd:
It works till I have 60.000. Then it goes down to 0-5000 or something.
What could it be?
Once my variable has reached 60000 it reduces to like 5000 or near that. I just can't get more then 60.000
I'm using rBits. This is how I store my cash.
Bit16: g_Cash <MAX_PLAYERS>,
When I use this cmd:
pawn Код:
COMMAND:cash(playerid,params[])
{
Bit16_Set(g_Cash,playerid,Bit16_Get(g_Cash,playerid)+10000);
return 1;
}
What could it be?