Bitcoin Forum
June 22, 2024, 10:05:45 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Micro Earnings / Re: FreeBitco.in Script Help 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

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
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Freshcoin - FSC - I just started a coin. on: July 12, 2017, 01:13:21 AM
If your not joking, then here is the file to mine FSC. https://dl.walletbuilders.com/download?customer=c8e505a127867857eafb1f696b5bedd5a884f8ef6a5c513b77&filename=freshcoin-qt-windows.zip
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Freshcoin - FSC - I just started a coin. on: July 11, 2017, 09:37:50 PM
How do I get my coin to be worth anything. I started mining and have 50 fsc but now I don't know what to do with it. Also, how can I have someone like you for instance mine fsc? I read somewhere that having miners is good for starting a coin.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Freshcoin - FSC - I just started a coin. on: July 11, 2017, 09:09:38 PM
I just started Freshcoin. What should I do? How can people mine it? Could you mine it? I'm a newbie to this. I used wallet builders.
5  Economy / Micro Earnings / FreeBitco.in Script Help 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(Cool;
   $('#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()
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!