Wednesday, January 25, 2017

Hack Freebitco.in Best Strategy 2017 earn 250000 satosi 24 hours


HOW TO USE THIS SCRIPT:

1. Go to freebitco.in
2. Click on Multiply BTC
3.  for CHROME : 1) go to Menu --> More Tools --> Javascript consol
                 2) Copy the script below
                 3) Paste the script into the javascript console
                 4) Press Enter key on the keyboard.
    for FIREFOX : 1. Press F12 key on the keyboard
                  2. Copy and paste the script below on the console line
                  3. then press ENTER key on the keyboard.
******************* SCRIPT ********************


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

No comments:

Post a Comment