47% found this document useful (17 votes)
16K views

Freebitco - in Bot

This document contains code for an automated dice rolling script. The script sets configuration parameters like the maximum bet amount and time delay between rolls. It then defines a function to roll the dice that checks the outcome of the previous roll and bets accordingly, either doubling the bet if it won or resetting if lost. It also checks the balance is sufficient before each roll and toggles between betting high or low. The script then calls the rolling function to start the automated repeating process.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
47% found this document useful (17 votes)
16K views

Freebitco - in Bot

This document contains code for an automated dice rolling script. The script sets configuration parameters like the maximum bet amount and time delay between rolls. It then defines a function to roll the dice that checks the outcome of the previous roll and bets accordingly, either doubling the bet if it won or resetting if lost. It also checks the balance is sufficient before each roll and toggles between betting high or low. The script then calls the rolling function to start the automated repeating process.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

http://freebitco.in/?

r=1107391 Por favor, use este endereo de refererencia para r


egistro
================================================================================
===
bconfig = {
maxBet: 0.10021256,
wait: 450,
toggleHilo:false
};
hilo = 'hi';
multiplier = 1;
rollDice = function() {
if ($('#double_your_btc_bet_lose').html() !== '') {
$('#double_your_btc_2x').click();
multiplier++;
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) {
$('#double_your_btc_min').click();
}
$('#double_your_btc_bet_' + hilo + '_button').click();
setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() *
100));
};
toggleHiLo
if (hilo
hilo =
} else {
hilo =
}

= function() {
=== 'hi') {
'hi';

};

'lo';

rollDice();

You might also like