To try the bot first signup at http://freebitco.in/?r=795408
Copy the bot script here:
=====================================================================
bconfig = {
maxBet: 0.0002200,
wait: 1000,
autoexit: 0.00001,
want: 0.000014,
toggleHilo:false,
startbal: 0,
won: 0,
};
hilo = 'hi';
multiplier = 1;
rollDice = function() {
if ($('#double_your_btc_bet_lose').html() !== '') {
$('#double_your_btc_2x').click();
multiplier = 1;
if(bconfig.toggleHilo)toggleHiLo();
} else {
$('#double_your_btc_min').click();
multiplier = 1;
}
if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
console.log($('#double_your_btc_min'));
}
if (parseFloat($('#balance').html()) < bconfig.autoexit) {
throw "exit";
}
if (parseFloat($('#balance').html()) > bconfig.want) {
var num = parseFloat($('#balance').html());
bconfig.want = num + 0.00000030;
bconfig.autoexit = num - 0.00000420;
bconfig.won++;
var total = num - bconfig.startbal;
console.log('Setting bconfig want to: ' + bconfig.want)
console.log('Setting autoexit to: ' + bconfig.autoexit)
console.log('Total won: ' + total + ' BTC')
}
$('#double_your_btc_bet_hi_button').click();
setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
};
toggleHiLo = function() {
if (hilo === 'hi') {
hilo = 'hi';
} else {
hilo = 'hi';
}
};
var num = parseFloat($('#balance').html());
bconfig.startbal = num;
bconfig.want = num + 0.00000030;
bconfig.autoexit = num - 0.00000420;
rollDice();
==========================================================
Configure and run
From the maker about the setting's
so when script is started it will get balance
e.g:
balance = 1500 satoshi
autoexit (aka failsafe) = balance - 420 (set it to 1 spin value )
want (how much do we want to get (another failsafe )) = balance + 30 satoshis
"Q: what does console log and what does it mean?
A:
Code:
"Setting bconfig want to: 0.000033770000000000004"
"Setting autoexit to: 0.000029270000000000003"
"Total won: 0.000010550000000000002 BTC"
"Setting bconfig want to: 0.00003408"
"Setting autoexit to: 0.000029579999999999998"
"Total won: 0.000010859999999999998 BTC"
"Setting bconfig want to: 0.00003439"
"Setting autoexit to: 0.00002989"
"Total won: 0.00001117 BTC"
Setting bconfig want to: 0.000033770000000000004 = this is your start balance + 30 satoshis
Setting autoexit to: 0.000029270000000000003 = failsafe balance - 420 satoshis
Total won: 0.000010550000000000002 BTC = how much did you won with running this script "For more Q & A check the Thebot.nets thread from the maker.