hack and win 1 bitcoin


SUBMITTED BY: hhpr122

DATE: Jan. 4, 2016, 2:57 a.m.

UPDATED: Jan. 5, 2016, 4:28 p.m.

FORMAT: Text only

SIZE: 3.8 kB

HITS: 2648

  1. hi
  2. start with this sit
  3. 1/http://freebitco.in/?r=1906778
  4. 2/ rejister ab account
  5. 3/ deposit 0.1 bit or more
  6. 4/ start the game
  7. 5/past the script
  8. and ean when you are sleep
  9. press F12 past the scrypt
  10. press inter
  11. press F12 agan
  12. roll the game
  13. or you should ern from the site
  14. the scrpt .is
  15. _________________________________________________
  16. var startValue = '0.00000256', // Don't lower the decimal point more than 4x of current balance
  17. stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08
  18. maxWait = 500, // In milliseconds
  19. stopped = false,
  20. stopBefore = 3; // In minutes
  21. var $loButton = $('#double_your_btc_bet_lo_button'),
  22. $hiButton = $('#double_your_btc_bet_hi_button');
  23. function multiply(){
  24. var current = $('#double_your_btc_stake').val();
  25. var multiply = (current * 2).toFixed(8);
  26. $('#double_your_btc_stake').val(multiply);
  27. }
  28. function getRandomWait(){
  29. var wait = Math.floor(Math.random() * maxWait ) + 100;
  30. console.log('Waiting for ' + wait + 'ms before next bet.');
  31. return wait ;
  32. }
  33. function startGame(){
  34. console.log('Game started!');
  35. reset();
  36. $loButton.trigger('click');
  37. }
  38. function stopGame(){
  39. console.log('Game will stop soon! Let me finish.');
  40. stopped = true;
  41. }
  42. function reset(){
  43. $('#double_your_btc_stake').val(startValue);
  44. }
  45. // quick and dirty hack if you have very little bitcoins like 0.0000001
  46. function deexponentize(number){
  47. return number * 1000000;
  48. }
  49. function iHaveEnoughMoni(){
  50. var balance = deexponentize(parseFloat($('#balance').text()));
  51. var current = deexponentize($('#double_your_btc_stake').val());
  52. return ((balance*2)/100) * (current*2) > stopPercentage/100;
  53. }
  54. function stopBeforeRedirect(){
  55. var minutes = parseInt($('title').text());
  56. if( minutes < stopBefore )
  57. {
  58. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  59. stopGame();
  60. return true;
  61. }
  62. return false;
  63. }
  64. // Unbind old shit
  65. $('#double_your_btc_bet_lose').unbind();
  66. $('#double_your_btc_bet_win').unbind();
  67. // Loser
  68. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  69. if( $(event.currentTarget).is(':contains("lose")') )
  70. {
  71. console.log('You LOST! Multiplying your bet and betting again.');
  72. multiply();
  73. setTimeout(function(){
  74. $loButton.trigger('click');
  75. }, getRandomWait());
  76. //$loButton.trigger('click');
  77. }
  78. });
  79. // Winner
  80. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  81. if( $(event.currentTarget).is(':contains("win")') )
  82. {
  83. if( stopBeforeRedirect() )
  84. {
  85. return;
  86. }
  87. if( iHaveEnoughMoni() )
  88. {
  89. console.log('You WON! But don\'t be greedy. Restarting!');
  90. reset();
  91. if( stopped )
  92. {
  93. stopped = false;
  94. return false;
  95. }
  96. }
  97. else
  98. {
  99. console.log('You WON! Betting again');
  100. }
  101. setTimeout(function(){
  102. $loButton.trigger('click');
  103. }, getRandomWait());
  104. }
  105. });startGame()

comments powered by Disqus