Sunday 8 January 2017

Win free Bitcoins every hour!

Win free Bitcoins every hour!

This is definitely not just more people playing... I figure it is one or more than one player buying a bunch of tickets and then dividing the winnings. We are seeing people with

3 000 000 and 9 000 000 tickets and that means they are dumping at least 1.53 BTC on this lottery. That person who won the 10th prize of 0.00590555 BTC ....spend 1.53 BTC

in tickets. That is just crazy... or something is wrong here. Why spend  $600+ to win $2.7? .....There has to be some group of people who is sharing the prize.

But how do you know he/they bought the tickets? It's probably easier to earn them by gambling. Example: set auto-bet with a base bet at 85000 sats (10 tickets per roll) at payout ~x1.1125 and increase base on loss at ~x10, if you have large balance, with bit of luck you can earn thousands if not millions of tickets while actually making a profit.

FreeBitco.in Review – Free Bitcoin Faucet / Multiplier


This is a great site for anyone looking to get their hands on their first Bitcoin. It offers a free Bitcoin faucet every hour and a multiplier that, with skill and patience allows you to multiply your Bitcoin. If you start with only the coin you get free from the faucet there is really no risk at all.
I found this awesome script that allows you to automate the multiplier to slowly increase your stash. I suggest that you use it conservatively until you see how it works and are comfortable before increasing the starting multiplier number.
I guarantee this works and clicking my link to signup would encourage me to keep adding to this site and improving it, for you 😉
Automation Instructions: 
  1. Signup here:  http://freebitco.in/?r=1446352
  2. Open up the site in Google Chrome
  3. Right Click somewhere on the page and click on “Inspect”
  4. Click “Console” and copy all of the code here, http://freebitco.in/?r=1446352 and paste it into the console
  5. Hit the enter button on your keyboard
  6. There is now a new tab in the main header navigation “Start Bot” Click it
  7. Become familiar with how it works at the default setting before increasing
  8. Enjoy, it’s as easy as that
  9. Every now and then it will timeout and you will have to reset
  10. Leave your comments if you have any questions
  11. Come back to this site for more and share with your friends!
Here’s another method with video proof. Let me know what you think and how much you make!

Earn up to 2,500,000 Satoshi an hour

Freebitco.in Best Strategy 2016 

var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance
        stopPercentage = 0.001, // In %. I wouldn't recommend going past 0.08
        maxWait = 500, // In milliseconds
        stopped = false,
        stopBefore = 3; // In minutes
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.0000001
function deexponentize(number){
        return number * 1000000;
}
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()