Jump to content
Rosso777

Players have max Poptabs?

Recommended Posts

Not sure why, but all my players have 9999/9999 poptabs. I can’t seem to figure out where this is being created in the code and how to change it. 
 

in my CreateBambi file, I have the variable set so that money should be removed (which I think is by default), so I’m not sure what’s going on.

 

Anyone else ever deal with this?

Share this post


Link to post
Share on other sites

hi it looks like you set a default value in the database --> player-->money

maybe you would like to add some start money in the locker and you have add them into the wrong table

if you want add some start money you have to add that into the "account" table in the rider "locker" and not on the "player" table

Share this post


Link to post
Share on other sites

I appreciate the response, @Powerstriker46. I checked the DB as you suggested, yet the default value is '0'. Back to the drawing board for me.

Share this post


Link to post
Share on other sites

In your config.cpp within your mission folder, search for pop tabs and change the value to your desired amount.

 

Example:

 

class CfgLocker 
{
    numbersOnly = "0123456789";
    
    maxDeposit = 1000000000;  //Edit this<<<<
};

Share this post


Link to post
Share on other sites

×