You are viewing our Forum Archives. To view or take place in current topics click here.
Need help with Java Script
Posted:

Need help with Java ScriptPosted:

Pon
  • Resident Elite
Status: Offline
Joined: Dec 09, 201310Year Member
Posts: 213
Reputation Power: 8
Status: Offline
Joined: Dec 09, 201310Year Member
Posts: 213
Reputation Power: 8
I don't know is this is the wrong forum but I came to the programming to see if you guys know what's wrong with this code

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 = function() {
if (hilo === 'lo') {
hilo = 'lo';
} else {
hilo = 'lo';
}
};
 
rollDice();


If you do please post below it is java script and every time i input it into good chrome console (Press F12 and go to console if on Google Chrome) But it just says [ Register or Signin to view external links. ] Thanks for all your help guys ~ Serenade <3
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.