NEW bustabit bitcoin script! Easy passive earnings for quick bitcoins! Cashout for CSGO or BTC.


SUBMITTED BY: staceyjones90

DATE: Nov. 1, 2016, 9:42 p.m.

FORMAT: Text only

SIZE: 4.0 kB

HITS: 1042

  1. // --------------
  2. // Stacey's gift to you all!
  3. // Be sure to say thanks on the thread
  4. var baseBet = Math.round(100/0.13);
  5. var skip1 = 1; // after 3rd loss
  6. var skip2 = 2; // after 4th loss
  7. var skip3 = 1; // after 5th loss
  8. var skip4 = 2; // after 6th loss
  9. var skip5 = 6; // after 7th loss
  10. var skip6 = 2; // after 8th loss
  11. var skip7 = 3; // after 9th loss
  12. var bet = baseBet * 150;
  13. var cashOut = 1.14;
  14. var currentBet = bet;
  15. var startBalance = engine.getBalance();
  16. var currentBalance = startBalance;
  17. var losses = 0;var skip = 0;var lostGames = 0;var waitXgames = 0;var CO = 0;var winStreak = 0;result = 'No results yet. ';
  18. var lossStreak = 0;
  19. console.log('%c----------Start!----------', 'color: green; font-weight:bold')
  20. engine.on('game_starting', function(info) {
  21. if (currentBet && engine.lastGamePlay() == 'LOST') {
  22. //if loss
  23. lossStreak++;
  24. lostGames++;
  25. winStreak = 0;
  26. currentBalance = engine.getBalance();
  27. losses = startBalance - currentBalance;
  28. currentBet *= 1.18; //bet increase on loss
  29. cashOut = (losses / currentBet) + 1.14; //cashout multiplier increase on loss
  30. if (lostGames >= 1) {
  31. waitXgames = 0;
  32. if (lostGames == 3) {skip = skip1;}
  33. if (lostGames == 4) {skip = skip2;}
  34. if (lostGames == 5) {skip = skip3;}
  35. if (lostGames == 6) {skip = skip4;}
  36. if (lostGames == 7) {skip = skip5;}
  37. if (lostGames == 8) {skip = skip6;}
  38. if (lostGames >= 9) {skip = skip7;}
  39. }
  40. } else {
  41. //if win
  42. currentBalance = engine.getBalance();
  43. if (currentBalance > startBalance) {
  44. winStreak++;
  45. if (winStreak >= 2) {
  46. currentBet *= 1.00; //bet increase on win
  47. cashOut *= 1.00; //cashout increase on win
  48. } else {
  49. console.log('%cBetting Reset', 'color: green; font-weight:bold')
  50. currentBet = bet; //reset betting on win
  51. cashOut = 1.13;
  52. }
  53. startBalance = engine.getBalance();
  54. lostGames = 0;
  55. skip = 0;
  56. //reset betting on 10 winStreak
  57. if (winStreak % 7 === 0) {
  58. console.log('%c7 wins', 'color: green; font-weight:bold')
  59. console.log('%cBetting Reset', 'color: green; font-weight:bold')
  60. currentBet = bet; //reset bet
  61. cashOut = 1.13; //reset the cashout
  62. }
  63. }
  64. }
  65. if (currentBet && engine.lastGamePlay() == 'WON') {
  66. lossStreak = 0;
  67. }
  68. if (waitXgames >= skip) {
  69. if (currentBet && engine.lastGamePlay() == 'WON') {
  70. console.log('%cYou win', 'color: green; font-weight:bold')
  71. }
  72. if (currentBet && engine.lastGamePlay() == 'LOST') {
  73. console.log('%cYou lose', 'color: red; font-weight:bold')
  74. }
  75. if (winStreak > '1') {
  76. console.log('Current win streak is', winStreak)
  77. }
  78. if (lossStreak > '1') {
  79. console.log('Current loss streak is', lossStreak)
  80. }
  81. console.log('--------New Round--------')
  82. console.log('', Math.floor(currentBet / 100), 'bits bet at', Math.round(cashOut * 100) / 100, 'x');
  83. engine.placeBet(Math.floor(currentBet / 100) * 100, Math.floor(cashOut * 100), false);
  84. } else {
  85. console.log('--------New Round--------')
  86. console.log('Cooling off. No bets this round.')
  87. console.log('Current loss streak is', lossStreak)
  88. winStreak = 0;
  89. }
  90. });
  91. //detect Busted
  92. engine.on('game_crash', function(data) {
  93. if (data.game_crash / 100 >= CO) {
  94. console.log('Game [Busted] at ' + (data.game_crash / 100) + 'x');
  95. waitXgames++;
  96. } else {
  97. waitXgames++;
  98. }
  99. });

comments powered by Disqus