//FreebitcoScriptV1 by RoadBlock
//Visit this link= http://freebitco.in/?r=1098115
//Hello everybody.
//This is my new modify script which is some cmd is added from others script. Thanks to them.
//Also there has been a lot of change you can find it.
//You can win 80%, yes 80% but be careful freebico will be looking at you if you are not refreshing at 30 mins.
//Tutorial: Change you amount of bet where I give it at below. Also you can change you Maximum bet limit at "maxBet"
//New update script will be coming soon.
//Copy all the script and paste it at console.
//If you using Google Chrome or Firefox or Opera than right click and click Inspect Element and click at the Console tab.
//If you like it then please use my referral "1098115" cause I am so poor :3
//Change your amount below.
var startValue = '0.00000040';
bconfig = {
maxBet: 0.00004096,
wait: 500,
toggleHilo:true
};
//If you are a advance Javascript programmer, then you can modify it if you know. Otherwise do not do it!
function reset(){
$('#double_your_btc_stake').val(startValue);
}
hilo = 'lo';
reset ();
multiplier = 1;
rollDice = function() {
if ($('#double_your_btc_bet_lose').html() !== '') {
$('#double_your_btc_2x').click();
multiplier++;
console.log("YOU LOST! Don't worry just be patient. Multiplying your bet and betting again.")
if(bconfig.toggleHilo)toggleHiLo();
} else {
$('#double_your_btc_min').click(); reset();
console.log("YOU WON! Restarting your bet...")
multiplier = 1; hilo = 'lo';
}
if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
$('#double_your_btc_min').click(); reset();
}
$('#double_your_btc_bet_' + hilo + '_button').click();
setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
};
toggleHiLo = function() {
if (hilo === 'lo') {
hilo = 'hi';
} else if (hilo === 'hi') {
hilo = 'lo';
} else {
hilo = 'lo';
};
}
rollDice();