Win 1 BTC a week, Legit


SUBMITTED BY: g23v3n

DATE: Feb. 19, 2017, 8:07 p.m.

UPDATED: Feb. 19, 2017, 8:39 p.m.

FORMAT: Text only

SIZE: 3.9 kB

HITS: 805

  1. 1.Sign up at http://cur.lv/14t6in
  2. 2. Click on Multiply BTC
  3. 3. for CHROME : 1) go to Menu --> More Tools --> Javascript console
  4. 2) Copy the script below
  5. 3) Paste the script into the javascript console
  6. 4) Press Enter key on the keyboard.
  7. for FIREFOX : 1. Press F12 key on the keyboard
  8. 2. Copy and paste the script below on the console line
  9. 3. then press ENTER key on the keyboard.
  10. ******************* SCRIPT ********************
  11. var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
  12. stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08
  13. maxWait = 500, // In milliseconds
  14. stopped = false,
  15. stopBefore = 3; // In minutes
  16. var $loButton = $('#double_your_btc_bet_lo_button'),
  17. $hiButton = $('#double_your_btc_bet_hi_button');
  18. function multiply(){
  19. var current = $('#double_your_btc_stake').val();
  20. var multiply = (current * 2).toFixed(8);
  21. $('#double_your_btc_stake').val(multiply);
  22. }
  23. function getRandomWait(){
  24. var wait = Math.floor(Math.random() * maxWait ) + 100;
  25. console.log('Waiting for ' + wait + 'ms before next bet.');
  26. return wait ;
  27. }
  28. function startGame(){
  29. console.log('Game started!');
  30. reset();
  31. $loButton.trigger('click');
  32. }
  33. function stopGame(){
  34. console.log('Game will stop soon! Let me finish.');
  35. stopped = true;
  36. }
  37. function reset(){
  38. $('#double_your_btc_stake').val(startValue);
  39. }
  40. // quick and dirty hack if you have very little bitcoins like 0.0000001
  41. function deexponentize(number){
  42. return number * 1000000;
  43. }
  44. function iHaveEnoughMoni(){
  45. var balance = deexponentize(parseFloat($('#balance').text()));
  46. var current = deexponentize($('#double_your_btc_stake').val());
  47. return ((balance*2)/100) * (current*2) > stopPercentage/100;
  48. }
  49. function stopBeforeRedirect(){
  50. var minutes = parseInt($('title').text());
  51. if( minutes < stopBefore )
  52. {
  53. console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
  54. stopGame();
  55. return true;
  56. }
  57. return false;
  58. }
  59. // Unbind old shit
  60. $('#double_your_btc_bet_lose').unbind();
  61. $('#double_your_btc_bet_win').unbind();
  62. // Loser
  63. $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
  64. if( $(event.currentTarget).is(':contains("lose")') )
  65. {
  66. console.log('You LOST! Multiplying your bet and betting again.');
  67. multiply();
  68. setTimeout(function(){
  69. $loButton.trigger('click');
  70. }, getRandomWait());
  71. //$loButton.trigger('click');
  72. }
  73. });
  74. // Winner
  75. $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
  76. if( $(event.currentTarget).is(':contains("win")') )
  77. {
  78. if( stopBeforeRedirect() )
  79. {
  80. return;
  81. }
  82. if( iHaveEnoughMoni() )
  83. {
  84. console.log('You WON! But don\'t be greedy. Restarting!');
  85. reset();
  86. if( stopped )
  87. {
  88. stopped = false;
  89. return false;
  90. }
  91. }
  92. else
  93. {
  94. console.log('You WON! Betting again');
  95. }
  96. setTimeout(function(){
  97. $loButton.trigger('click');
  98. }, getRandomWait());
  99. }
  100. });startgame()

comments powered by Disqus