0% found this document useful (0 votes)
2K views

Freebitco - in Script 2020

This script is designed to automatically place bets on a dice betting website. It will place bets repeatedly based on configurable settings like the maximum bet amount and wait time between bets. It can toggle between betting high or low after each bet and will increase the multiplier on winning bets to place higher value bets over time.
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
0% found this document useful (0 votes)
2K views

Freebitco - in Script 2020

This script is designed to automatically place bets on a dice betting website. It will place bets repeatedly based on configurable settings like the maximum bet amount and wait time between bets. It can toggle between betting high or low after each bet and will increase the multiplier on winning bets to place higher value bets over time.
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

freebitco.

in script

bconfig = {
maxBet: 0.15895551,
wait: 100,
toggleHilo:false
};
hilo = 'hi';
multiplier = 4;
rollDice = function() {
if ($('#double_your_btc_bet_lose').html() !== '') {
$('#double_your_btc_3x').click();
multiplier++;
if(bconfig.toggleHilo)toggleHiLo();
} else {
$('#double_your_btc_min').click();
multiplier = 4;
}
if (parseFloat($('#balance').html()) < (parseFloat($
('#double_your_btc_stake').val()) * 4) ||
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 = function() {
if (hilo === 'hi') {
hilo = 'hi';
} else {
hilo = 'hi';
}
};
rollDice();

You might also like