This is completely free below, with a couple of screenies to help the not-so-technicals' out that haven't an idea how to open up the consoles on Chrome and Firefox.
I'm bringing to you a player that'll make life easier while over on freebitco.in that you can actually see for yourself. I'm not putting an affiliate link, but if you find this useful and would like to donate feel free it'll be down below (all donations are appreciated)
Anyhow here's the script and I'll supply you with screenies of exactly what it does, rather than posting comments throughout this code.
You will need Google Chrome or Firefox, if you need to know how to open up the console on each one great. If not here's how you do it:
Chrome - Shift + CTRL + J
Firefox - Right click the page once you're on Multiply BTC and click Inspect Element then click inside the box down below, the Console box as such:
https://i.imgur.com/N0GtoX0.jpgNow for the code to place in the console, feel free to adjust the numbers as you see fit, I'll pop in and out once in a while, but it takes a bit of understanding, however...... There's a safety net
You'll see as you progress! Because we can never win it all, always lose in the long run. However if you get up there in the numbers, PULL OUT!
Enjoy and it's full on open source, as you can see here this is what it builds you:
https://i.imgur.com/ZZbvm7i.jpgAs you see it cuts all the access ads out, and builds you nothing but a frame to watch, and when you start to lose, it'll pop up and ask you to take the rise, you can see in the code below for yourself:
This is what I use, however do note, everyone's LUCK is different. But this adds a bit of speed to your gambling
Remember bet responsively!
Copy and paste the below into the console and go kick ass!
$('body').append('<div style="position:fixed;top:0;left:0;width:100%;height:100%;min-height:100%;text-align: center;z-index:100000;background-color:white;" class=""><table style="margin:0 auto;"><tr><td>balance</td><td id="balance_b"></td></tr><tr><td>win</td><td id="roundwin_b"></td></tr><tr><td>bet</td><td id="current_bet_b"></td></tr><tr><td>time</td><td id="time_b"></td></tr></table></div>');
bconfig = {
maxBet: 0.00001024,
wait: 1,
toggleHilo: false,
alertMultiplier: 5
};
initialBalance = parseFloat($('#balance').html());
hilo = 'hi';
multiplier = 1;
startTime = new Date().getTime();
rollDice = function() {
if ($('#double_your_btc_bet_lose').html() !== '') {
$('#double_your_btc_2x').click();
multiplier++;
if (bconfig.toggleHilo) toggleHiLo();
} else {
setStartBet();
$('#double_your_btc_bet_win').html('');
var cmsg = {
lose: $('#double_your_btc_bet_lose').html(),
win: $('#double_your_btc_bet_win').html()
};
cmsg = JSON.stringify(cmsg);
}
if (multiplier > bconfig.alertMultiplier) {
if (window.confirm("You have already lost " + (Math.pow(2, (multiplier - 1)) - 1) + " and you are about to lose " + Math.pow(2, (multiplier - 1)) + ". Click 'cancel' to reset the bet amount to 1 or 'ok' to take the risk?")) {
} else {
$('#double_your_btc_min').click();
multiplier = 1;
}
$('#double_your_btc_bet_' + hilo + '_button').click();
} else {
if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
$('#double_your_btc_min').click();
multiplier = 1;
}
$('#double_your_btc_bet_' + hilo + '_button').click();
}
// setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
};
toggleHiLo = function() {
if (hilo === 'hi') {
hilo = 'lo';
} else {
hilo = 'hi';
}
};
setStartBet = function() {
$('#double_your_btc_min').click();
multiplier = 1;
// if ((Math.random() * 10) > 5) {
// } else {
// $('#double_your_btc_min').click();
// $('#double_your_btc_2x').click();
// multiplier = 2;
// }
}
currentMsg = '';
bChange = function(next) {
var cmsg = {
lose: $('#double_your_btc_bet_lose').html(),
win: $('#double_your_btc_bet_win').html()
};
cmsg = JSON.stringify(cmsg);
if (currentMsg !== cmsg) {
$('#balance_b').html($('#balance').html());
$('#roundwin_b').html((parseFloat($('#balance').html()) - initialBalance).toFixed(8));
$('#current_bet_b').html($('#double_your_btc_stake').val());
$('#time_b').html((Math.round(((new Date().getTime()) - startTime) / 1000) / 60 / 60).toFixed(2) + ' h');
currentMsg = cmsg;
next();
}
setTimeout(function() {
setTimeout(function() {
bChange(next);
}, bconfig.wait)
}, 50);
};
bChange(rollDice);
Now if you found this useful at all and want to donate, feel free here:
1KQ6ai6DmDcMnsiA4YAfJBkG7FWFCCD27tIf not, no worries, enjoy the automation and code that you can actually see
There are safety nets built in, so do see once you start losing, and you can adjust the code to your playstyle or even build on it.
All the best, and goodluck!