Advertisement
Guest User

btc method

a guest
Jul 6th, 2019
3,482
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.68 KB | None | 0 0
  1. Hello Everyone , Here im sharing my own way how im Making $$
  2. YES This leak still works , you must give it a Try at least
  3. If you appreciate my work give me some GREEN !
  4.  
  5.  
  6.  
  7. 1.You need a Bitcoin Wallet !
  8. 2. Open an account at http://www.catchaBTC.com
  9. Or use my Ref http://www.catchaBTC.com/register/JETT (5% is the Ref )
  10. 3. Copy the whole AI Script and paste it at Auto Bets ---> down Custom , once you paste Press Run
  11. 4. Get back here and Leave a Reply
  12.  
  13.  
  14. Note: you can Modify the Script how you want But im sharing the Safest way !
  15.  
  16.  
  17.  
  18.  
  19. // Settings
  20. var baseBet = 10; // In bits
  21. var baseMultiplier = 1.1; // Target multiplier: 1.10 recommended
  22. var variableBase = false; // Enable variable mode (very experimental), read streakSecurity.
  23. var streakSecurity = 15; // Number of loss-streak you wanna be safe for. Increasing this massively reduces the variableBase calculated. (1-loss = 20%, 2-loss = 5%, 3-loss = 1.25% of your maximum balance). Recommended: 2+
  24. var maximumBet = 999999; // Maximum bet the bot will do (in bits).
  25.  
  26. // Variables - Do not touch!
  27. var baseSatoshi = baseBet * 100; // Calculated
  28. var currentBet = baseSatoshi;
  29. var currentMultiplier = baseMultiplier;
  30. var currentGameID = -1;
  31. var firstGame = true;
  32. var lossStreak = 0;
  33. var coolingDown = false;
  34.  
  35. // Initialization
  36. console.log('====== Procon\'s BustaBit Bot ======');
  37. console.log('My username is: ' + engine.getUsername());
  38. console.log('Starting balance: ' + (engine.getBalance() / 100).toFixed(2) + ' bits');
  39. var startingBalance = engine.getBalance();
  40.  
  41. if (variableBase) {
  42. console.warn('[WARN] Variable mode is enabled and not fully tested. Bot is resillient to ' + streakSecurity + '-loss streaks.');
  43. }
  44.  
  45. // On a game starting, place the bet.
  46. engine.on('game_starting', function(info) {
  47. console.log('====== New Game ======');
  48. console.log('[Bot] Game #' + info.game_id);
  49. currentGameID = info.game_id;
  50.  
  51. if (coolingDown) {
  52. if (lossStreak == 0) {
  53. coolingDown = false;
  54. }
  55. else {
  56. lossStreak--;
  57. console.log('[Bot] Cooling down! Games remaining: ' + lossStreak);
  58. return;
  59. }
  60. }
  61.  
  62. if (!firstGame) { // Display data only after first game played.
  63. console.log('[Stats] Session profit: ' + ((engine.getBalance() - startingBalance) / 100).toFixed(2) + ' bits');
  64. console.log('[Stats] Profit percentage: ' + (((engine.getBalance() / startingBalance) - 1) * 100).toFixed(2) + '%');
  65. }
  66.  
  67. if (engine.lastGamePlay() == 'LOST' && !firstGame) { // If last game loss:
  68. lossStreak++;
  69. var totalLosses = 0; // Total satoshi lost.
  70. var lastLoss = currentBet; // Store our last bet.
  71. while (lastLoss >= baseSatoshi) { // Until we get down to base bet, add the previous losses.
  72. totalLosses += lastLoss;
  73. lastLoss /= 4;
  74. }
  75.  
  76. if (lossStreak > streakSecurity) { // If we're on a loss streak, wait a few games!
  77. coolingDown = true;
  78. return;
  79. }
  80.  
  81. currentBet *= 7; // Then multiply base bet by 4!
  82. currentMultiplier = 1.00 + (totalLosses / currentBet);
  83. }
  84. else { // Otherwise if win or first game:
  85. lossStreak = 0; // If it was a win, we reset the lossStreak.
  86. if (variableBase) { // If variable bet enabled.
  87. // Variable mode resists (currently) 1 loss, by making sure you have enough to cover the base and the 4x base bet.
  88. var divider = 100;
  89. for (i = 0; i < streakSecurity; i++) {
  90. divider += (100 * Math.pow(4, (i + 1)));
  91. }
  92.  
  93. newBaseBet = Math.min(Math.max(1, Math.floor(engine.getBalance() / divider)), maximumBet * 100); // In bits
  94. newBaseSatoshi = newBaseBet * 100;
  95.  
  96. if ((newBaseBet != baseBet) || (newBaseBet == 1)) {
  97. console.log('[Bot] Variable mode has changed base bet to: ' + newBaseBet + ' bits');
  98. baseBet = newBaseBet;
  99. baseSatoshi = newBaseSatoshi;
  100. }
  101. }
  102. // Update bet.
  103. currentBet = baseSatoshi; // in Satoshi
  104. currentMultiplier = baseMultiplier;
  105. }
  106.  
  107. // Message and set first game to false to be sure.
  108. console.log('[Bot] Betting ' + (currentBet / 100) + ' bits, cashing out at ' + currentMultiplier + 'x');
  109. firstGame = false;
  110.  
  111. if (currentBet <= engine.getBalance()) { // Ensure we have enough to bet
  112. if (currentBet > (maximumBet * 100)) { // Ensure you only bet the maximum.
  113. console.warn('[Warn] Bet size exceeds maximum bet, lowering bet to ' + (maximumBet * 100) + ' bits');
  114. currentBet = maximumBet;
  115. }
  116. engine.placeBet(currentBet, Math.round(currentMultiplier * 100), false);
  117. }
  118. else { // Otherwise insufficent funds...
  119. if (engine.getBalance() < 100) {
  120. console.error('[Bot] Insufficent funds to do anything... stopping');
  121. engine.stop();
  122. }
  123. else {
  124. console.warn('[Bot] Insufficent funds to bet ' + (currentBet / 100) + ' bits.');
  125. console.warn('[Bot] Resetting to 1 bit basebet');
  126. baseBet = 1;
  127. baseSatoshi = 100;
  128. }
  129. }
  130. });
  131.  
  132. engine.on('game_started', function(data) {
  133. if (!firstGame) { console.log('[Bot] Game #' + currentGameID + ' has started!'); }
  134. });
  135.  
  136. engine.on('cashed_out', function(data) {
  137. if (data.username == engine.getUsername()) {
  138. console.log('[Bot] Successfully cashed out at ' + (data.stopped_at / 100) + 'x');
  139. }
  140. });
  141.  
  142. engine.on('game_crash', function(data) {
  143. if (!firstGame) { console.log('[Bot] Game crashed at ' + (data.game_crash / 100) + 'x'); }
  144. });
  145.  
  146.  
  147.  
  148. If you are glad please use my Ref link , as ref is 5% Life time ( count it as a donation)
  149. If you dont understand or you find it difficult PM me
  150. Peace
  151.  
  152. Results of my Graph
  153. 03ZkcRH.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement