0% found this document useful (0 votes)
58 views1 page

Freebitcoinbot

The document contains code for a betting configuration and functions for rolling dice, toggling between high and low bets, and generating random numbers. It sets up an initial configuration, multiplier, and bet direction and then calls functions to place bets and reset the bet based on the outcome.

Uploaded by

ubaid chohan
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)
58 views1 page

Freebitcoinbot

The document contains code for a betting configuration and functions for rolling dice, toggling between high and low bets, and generating random numbers. It sets up an initial configuration, multiplier, and bet direction and then calls functions to place bets and reset the bet based on the outcome.

Uploaded by

ubaid chohan
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

bconfig = {

maxBet: 0.0000000256,
wait: 700,
toggleHilo:false
};

hilo = 'lo';
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())<200)
{
parseFloat($('#blance').html())*2
}

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, 200)//(multiplier * bconfig.wait) + getRandomNumber(4749,


4750));
};

toggleHiLo = function() {
if (hilo === 'lo') {
hilo = 'lo';
} else {
hilo = 'lo';
}
};

rollDice();
function getRandomNumber(min, max){
let step1 = max - min + 1;
let step2 = Math.random() + min;
let result = Math.floor(step2) + min;
return result;
}

You might also like