Post
Topic
Board Gambling discussion
Re: Need bustabit advice
by
rfisher1968
on 16/09/2016, 14:13:54 UTC
I do agree that no script can run forever and win. It just did bust and crash. Maybe by posting it here somebody can change/add to make last longer.

https://www.bustabit.com/user/4fIGHty

Code:
var bbase = 100;
var bbet = bbase;
var mycrash = 100;
var pbase = 1000;
var pper = pbase;
var ltotal = 0;
var llose = 0;
var bigb = 100000;

engine.on('game_starting', function(info) {
   if ( mycrash < pper )
   {
       llose += 1;
       ltotal += bbet;
       if ( ltotal >= 5*bbet )
       {
           bbet *= 2;
       }
       pper = ((Math.ceil(ltotal/bbet))*100)+150;
       if ( llose > 12 )
       {
           bbet = bigb;
           pper = 110;
           llose = 0;
       }
   }
   else
   {
       bigb = Math.ceil(engine.getBalance()/2000)*100;  
       bbase = Math.ceil(engine.getBalance()/2500000)*100;
       console.log('bbase ', bbase);
       ltotal = bbase;
       pper = pbase;
       bbet = bbase;
       llose = 0;
   }
   engine.placeBet(bbet, pper, false);
});

engine.on('game_crash', function(data) {
    mycrash = data.game_crash;
    console.log('Game crashed at ', data.game_crash);
});

Edit: I just edited the script so that it won't bet into a death spiral. I will post it if it shows promise.
Is this affirmative with the site even i go away from keyboard for just 1 hour and it will never lose my minimum deposit in that website ? cause i know if we have big deposit and all in and cashout always @1.01 before it bust and so that you can earn profit every round you gonna play with it hope that i can win that easily .

This script will bet till it can't bet anymore, meaning lose all your bits. What I have done is change/edit the script which I'm currently running which will not risk more then 1/39.5 of you balance to make a gain.

So don't use my script with a lot of bits. You will lose in the end.