75% found this document useful (4 votes)
2K views1 page

Script Multyfly Freebitcoin

This document defines a configuration object and functions for an automated dice rolling game. The configuration object defines the maximum bet amount, wait time between rolls, and whether to toggle the bet type. The rollDice function checks the current balance and bet against limits before clicking to place the bet, then waits and recursively calls itself, increasing the wait time with each successive roll. It will click to double the bet if possible, reset on losses, and optionally toggle the bet type between "lo" and "hi" with each roll.

Uploaded by

BudiSetiawan
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
75% found this document useful (4 votes)
2K views1 page

Script Multyfly Freebitcoin

This document defines a configuration object and functions for an automated dice rolling game. The configuration object defines the maximum bet amount, wait time between rolls, and whether to toggle the bet type. The rollDice function checks the current balance and bet against limits before clicking to place the bet, then waits and recursively calls itself, increasing the wait time with each successive roll. It will click to double the bet if possible, reset on losses, and optionally toggle the bet type between "lo" and "hi" with each roll.

Uploaded by

BudiSetiawan
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.00000256,
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()) < (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() {
=== 'lo') {
'lo';

rollDice();

'lo';

You might also like