0% found this document useful (0 votes)
134 views

Freebitco - in Rollbot Script

This document defines a configuration object for an automated betting script with settings like the initial bet amount, maximum bet, wait time between bets, auto exit balance, target balance, and toggle for high/low bets. It also contains functions to place bets, check balances, update settings, and toggle the bet direction. The script is set to place repeated high bets using these parameters until either the target or minimum balance is reached.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
134 views

Freebitco - in Rollbot Script

This document defines a configuration object for an automated betting script with settings like the initial bet amount, maximum bet, wait time between bets, auto exit balance, target balance, and toggle for high/low bets. It also contains functions to place bets, check balances, update settings, and toggle the bet direction. The script is set to place repeated high bets using these parameters until either the target or minimum balance is reached.
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

bconfig = {

//Change Bet valor to increase your bet


Bet: 0.0000001,
maxBet: 0.0004200,
wait: 3000,
autoexit: 0.0001,
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 {
document.getElementById("double_your_btc_stake").value = bconfig.Bet;
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();

You might also like