Bitcoin Forum

Economy => Micro Earnings => Topic started by: HunterDonahue on July 08, 2017, 03:16:19 AM



Title: FreeBitco.in Script Help
Post by: HunterDonahue on July 08, 2017, 03:16:19 AM
Hi I have this script for freebitco.in that gets me free btc. How can I set a limiter so that it can not bet over 0.00000512. Here is the script

var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
   stopPercentage = 0.001,
   maxWait = 777,
   stopped = false, // debugging
   stopBefore = 1; // In minutes for timer before stopping redirect on webpage

var $loButton = $('#double_your_btc_bet_lo_button'),
      $hiButton = $('#double_your_btc_bet_hi_button');

function multiply(){
   var current = $('#double_your_btc_stake').val();
   var multiply = (current * 2).toFixed(8);
   $('#double_your_btc_stake').val(multiply);
}

function getRandomWait(){
   var wait = Math.floor(Math.random() * maxWait ) + 100;

   console.log('Waiting for ' + wait + 'ms before next bet.');

   return wait ;
}

function startGame(){
   console.log('Game started!');
   reset();
   $loButton.trigger('click');
}

function stopGame(){
   console.log('Game will stop soon! Let me finish.');
   stopped = true;
}

function reset(){
   $('#double_your_btc_stake').val(startValue);
}

// quick and dirty hack if you have very little bitcoins like 0.00000001
function deexponentize(number){
   return number * 10000000;
}

function iHaveEnoughMoni(){
   var balance = deexponentize(parseFloat($('#balance').text()));
   var current = deexponentize($('#double_your_btc_stake').val());

   return ((balance)*2/100) * (current*2) > stopPercentage/100;
}

function stopBeforeRedirect(){
   var minutes = parseInt($('title').text());

   if( minutes < stopBefore )
   {
      console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing.');
      stopGame();

      return true;
   }

   return false;
}

// Unbind old shit
$('#double_your_btc_bet_lose').unbind();
$('#double_your_btc_bet_win').unbind();

// Loser
$('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){
   if( $(event.currentTarget).is(':contains("lose")') )
   {
      console.log('You LOST! Multiplying your bet and betting again.');
      
      multiply();

      setTimeout(function(){
         $loButton.trigger('click');
      }, getRandomWait());

      //$loButton.trigger('click');
   }
});

// Winner
$('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){
   if( $(event.currentTarget).is(':contains("win")') )
   {
      if( stopBeforeRedirect() )
                {
                        return;
                }

      if( iHaveEnoughMoni() )
      {
         console.log('You WON! But don\'t be greedy. Restarting!');

         reset();

         if( stopped )
         {
            stopped = false;
            return false;
         }
      }
      else
      {
         console.log('You WON! Betting again');
      }

      setTimeout(function(){
         $loButton.trigger('click');
      }, getRandomWait());
   }
});startGame()


Title: Re: FreeBitco.in Script Help
Post by: Kaller on July 08, 2017, 05:19:59 AM
How much do you win with this? How do you apply it in your browser?

I do not think it will be something I can help you with, but this is pretty cool.


Title: Re: FreeBitco.in Script Help
Post by: asonganyi on July 08, 2017, 05:32:53 PM
How to apply this ?
How much do you win with this? How do you apply it in your browser?

I do not think it will be something I can help you with, but this is pretty cool.

If you don't sit there and watch it constantly, it can lose all of your satoshis. I have had this happen about 10 times. I have 2730 satoshi but I should have 10K satoshi. Also, I think I found one with a limiter online if you want me to post it I can. Also to use this, right click on the numbers on the multiply bet and click inspect element and then go to the console and paste this code in. If you haven't signed up, could you please sign up with my referral. It doesn't cost you anything, it simply just helps me out. https://freebitco.in/?r=3575119 (https://freebitco.in/?r=3575119)

i have been seeing stuffs like that around do they really work?
pls you can pm me if it not out of rules for you to post here
i will appreciate the help and i will sign up with your link
thanks waiting to here from you soon


Title: Re: FreeBitco.in Script Help
Post by: Maveth13 on July 15, 2017, 03:15:08 PM
This script doesn't give you free btc,  its just an auto-bet script. So why not just use the auto bet function on the site itself.
Under the "Stop betting after", set the LOSS>= to the value you want.


Title: Re: FreeBitco.in Script Help
Post by: HunterDonahue on July 24, 2017, 04:34:39 AM
How to apply this ?
How much do you win with this? How do you apply it in your browser?

I do not think it will be something I can help you with, but this is pretty cool.

If you don't sit there and watch it constantly, it can lose all of your satoshis. I have had this happen about 10 times. I have 2730 satoshi but I should have 10K satoshi. Also, I think I found one with a limiter online if you want me to post it I can. Also to use this, right click on the numbers on the multiply bet and click inspect element and then go to the console and paste this code in. If you haven't signed up, could you please sign up with my referral. It doesn't cost you anything, it simply just helps me out. https://freebitco.in/?r=3575119 (https://freebitco.in/?r=3575119)

i have been seeing stuffs like that around do they really work?
pls you can pm me if it not out of rules for you to post here
i will appreciate the help and i will sign up with your link
thanks waiting to here from you soon

Here is the link to the script! http://festyy.com/qBpGOK