In bitcoin there are many ways to trick the faucet
like using the script,cheat engine,reloadevery, imacros,and change ip
today i would like to tell you tricky trick to get bitcoin fast
1.maybe you want to get more easy fast
the only thing that you is just modem with dynamic IP. why ? because freebitco.in is using ip logging statistic only.so it safe if you are always clear up your cookies
and always change your ip switching your account that was very simple
2.you maybe need using script below just copy and paste to your browser by pressing button in google chrome CTRL+SHIFT+J
// Customizable variables
var minValue = 0.00000001;
var maxLoss = 0.0000001;
var aimedProfit = 0.000005;
var maxOps = 50;
// Don't touch anything after this
var endResult = 0;
var ops = 0;
// Bets a given amount on a given button and returns the value ot the callback
var bet = function(value, button, callback) {
var buttonName = button ? 'lo' : 'hi';
// We use site's api
$.get('?op=double_your_btc&m=' + buttonName + '&stake=' + value + '&multiplier=2&jackpot=0', function(result) {
var splittedResult = result.split(':');
// We update the account balance, as we have it juste there
$('#balance').html(splittedResult[3]);
// We finally call the callback
callback(value, button, splittedResult[1] === 'w');
}
);
};
// Main Martingale's method
var martingale = function(value, button, result) {
// We apply Martingale algorithm
if (result || (value >= maxLoss && maxLoss !== 0)) {
button = !button;
newValue = minValue;
}
else
newValue = 2 * value;
// We compute new final result
if (result)
endResult += value;
else
endResult -= value;
// We start over (and log misc data)
console.log((result ? '+' : '-') + value);
ops++;
if ((ops < maxOps || maxOps === 0) && (endResult < aimedProfit || aimedProfit === 0))
bet(newValue, button, martingale);
else {
console.log('Martingale finished in ' + ops + ' operations!');
console.log('Result: ' + endResult);
}
};
// Init operation
martingale(minValue, false, false);