FREE BITCOIN BOT FOR YOU!!!


SUBMITTED BY: Guest

DATE: March 11, 2014, 3:51 p.m.

FORMAT: Text only

SIZE: 3.7 kB

HITS: 923

  1. Please use my referral link http://bit.ly/1keOV7y PLEASE use a new address and account. Enjoy this method below!
  2. Once you go to the referral link above this is what you do…
  3. 1)Right click in your browser page
  4. 2)Click Inspect Element
  5. 3)Open up the console
  6. 4)Copy paste the scrip below into the console
  7. 5)Hit ENTER
  8. 6)Enjoy your free Bitcoin on autopilot!
  9. $('body').append('<div style="position:fixed;top:0;left:0;width:100%;height:100%;min-height:100%;text-align: center;z-index:100000;background-color:white;" class=""><table style="margin:0 auto;"><tr><td>balance</td><td id="balance_b"></td></tr><tr><td>win</td><td id="roundwin_b"></td></tr><tr><td>bet</td><td id="current_bet_b"></td></tr><tr><td>time</td><td id="time_b"></td></tr></table></div>');
  10. bconfig = {
  11. maxBet: 0.00001024,
  12. wait: 1,
  13. toggleHilo: false,
  14. alertMultiplier: 5
  15. };
  16. initialBalance = parseFloat($('#balance').html());
  17. hilo = 'hi';
  18. multiplier = 1;
  19. startTime = new Date().getTime();
  20. rollDice = function() {
  21. if ($('#double_your_btc_bet_lose').html() !== '') {
  22. $('#double_your_btc_2x').click();
  23. multiplier++;
  24. if (bconfig.toggleHilo) toggleHiLo();
  25. } else {
  26. setStartBet();
  27. $('#double_your_btc_bet_win').html('');
  28. var cmsg = {
  29. lose: $('#double_your_btc_bet_lose').html(),
  30. win: $('#double_your_btc_bet_win').html()
  31. };
  32. cmsg = JSON.stringify(cmsg);
  33. }
  34. if (multiplier > bconfig.alertMultiplier) {
  35. if (window.confirm("You have already lost " + (Math.pow(2, (multiplier - 1)) - 1) + " and you are about to lose " + Math.pow(2, (multiplier - 1)) + ". Click 'cancel' to reset the bet amount to 1 or 'ok' to take the risk?")) {
  36. } else {
  37. $('#double_your_btc_min').click();
  38. multiplier = 1;
  39. }
  40. $('#double_your_btc_bet_' + hilo + '_button').click();
  41. } else {
  42. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  43. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  44. $('#double_your_btc_min').click();
  45. multiplier = 1;
  46. }
  47. $('#double_your_btc_bet_' + hilo + '_button').click();
  48. }
  49. // setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
  50. };
  51. toggleHiLo = function() {
  52. if (hilo === 'hi') {
  53. hilo = 'lo';
  54. } else {
  55. hilo = 'hi';
  56. }
  57. };
  58. setStartBet = function() {
  59. $('#double_your_btc_min').click();
  60. multiplier = 1;
  61. // if ((Math.random() * 10) > 5) {
  62. // } else {
  63. // $('#double_your_btc_min').click();
  64. // $('#double_your_btc_2x').click();
  65. // multiplier = 2;
  66. // }
  67. }
  68. currentMsg = '';
  69. bChange = function(next) {
  70. var cmsg = {
  71. lose: $('#double_your_btc_bet_lose').html(),
  72. win: $('#double_your_btc_bet_win').html()
  73. };
  74. cmsg = JSON.stringify(cmsg);
  75. if (currentMsg !== cmsg) {
  76. $('#balance_b').html($('#balance').html());
  77. $('#roundwin_b').html((parseFloat($('#balance').html()) - initialBalance).toFixed(8));
  78. $('#current_bet_b').html($('#double_your_btc_stake').val());
  79. $('#time_b').html((Math.round(((new Date().getTime()) - startTime) / 1000) / 60 / 60).toFixed(2) + ' h');
  80. currentMsg = cmsg;
  81. next();
  82. }
  83. setTimeout(function() {
  84. setTimeout(function() {
  85. bChange(next);
  86. }, bconfig.wait)
  87. }, 50);
  88. };
  89. bChange(rollDice);

comments powered by Disqus