BEST BUSTABIT SCRIPT. MAKE A SHIT TON OF BTC


SUBMITTED BY: takake

DATE: July 25, 2016, 9:38 a.m.

FORMAT: Text only

SIZE: 1.4 kB

HITS: 1381

  1. var base = 5; //Base bet
  2. var autocashout = 8.00; //Auto cashout at
  3. var waitgamesafterwin = 20; //If you win, wait games before betting again
  4. var onloseincreasebet = 116; //If you lose, increase bet by %
  5. / dont edit below /
  6. var waited = waitgamesafterwin;
  7. var currbet = base * 100;
  8. var bet = false;
  9. var first = true;
  10. var autocashoutx = autocashout * 100;
  11. engine.on('game_starting', function(info)
  12. {
  13. waited++;
  14. if(waited >= waitgamesafterwin)
  15. {
  16. if(!first){
  17. if (engine.lastGamePlay() == 'LOST')
  18. {
  19. currbet = ((currbet / 100) * onloseincreasebet);
  20. console.log("LOST, waited = "+waited+", currbet = " + currbet+", autocashout = "+autocashout);
  21. }
  22. else
  23. {
  24. if(waited != waitgamesafterwin)
  25. {
  26. currbet = base * 100;
  27. waited = 0;
  28. console.log("WON, waited = "+waited+", currbet = " + currbet+", autocashout = "+autocashout);
  29. }
  30. }
  31. } else { first = false; }
  32. if(waited >= waitgamesafterwin)
  33. {
  34. console.log("Betting, waited = "+waited+", currbet = " + currbet+", autocashout = "+autocashout);
  35. engine.placeBet((Math.floor(currbet / 100) * 100), Math.round(autocashoutx), false);
  36. }else{
  37. console.log("Waiting, waited = "+waited+", currbet = " + currbet+", autocashout = "+autocashout);}
  38. } else {
  39. console.log("Waiting, waited = "+waited+", currbet = " + currbet+", autocashout = "+autocashout);
  40. }
  41. });

comments powered by Disqus