var startValue = '0.00000001', // Don't lower the decimal point more than 4x of current balance stopPercentage = 0.001, maxWait = 33, stopped = false, // debugging stopBefore = 1, // In minutes for timer before stopping redirect on webpage LSC= 0, max_loss= 16, bet_L = 1, bet_count = 1, max_bet= 4500, won = 0; var betlabel = ["Lo", "Hi"]; var $loButton = $('#double_your_btc_bet_lo_button'), $hiButton = $('#double_your_btc_bet_hi_button'); function multiply(){ var current = $('#double_your_btc_stake').val(); var multiply = (current * 2).toFixed(8); $('#double_your_btc_stake').val(multiply); //$('#double_your_btc_stake').val(startValue); } function getRandomWait(w){ var wait = Math.floor(Math.random() * maxWait ) + 100; //console.log('Waiting for ' + wait + 'ms before next bet.'); return wait ; } function startGame(){ console.log('Game started!'); reset(); click_hilo(bet_L); } function reset(){ LSC= 0; $('#double_your_btc_stake').val(startValue); } function stopGame(){ console.log('Game will stop soon! Let me finish.'); stopped = true; } // quick and dirty hack if you have very little bitcoins like 0.00000001 function deexponentize(number){ return number * 10000000; } function iHaveEnoughMoni(){ var balance = deexponentize(parseFloat($('#balance').text())); var current = deexponentize($('#double_your_btc_stake').val()); return ((balance)*2/100) * (current*2) > stopPercentage/100; } function stopBeforeRedirect(){ var minutes = parseInt($('title').text()); if( minutes < stopBefore ) { console.log('Approaching redirect! Stop the game so we don\'t get redirected while loosing. Won: ' + won); stopGame(); return true; } return false; } function switch_hilo(){ if(bet_L) { bet_L = 0; }else{ bet_L = 1; } } function click_hilo() { if(bet_L) { $hiButton.trigger('click'); }else{ $loButton.trigger('click'); } } // Unbind old shit $('#double_your_btc_bet_lose').unbind(); $('#double_your_btc_bet_win').unbind(); // Loser $('#double_your_btc_bet_lose').bind("DOMSubtreeModified",function(event){ if( $(event.currentTarget).is(':contains("lose")') ) { //console.log('You LOST! Multiplying your bet and betting again.'); LSC++; console.log(bet_count + '. Clicked '+ betlabel[bet_L] +', LOST! - ' + LSC); bet_L = 1; // get again HI /* if(LSC== 3 || LSC== 6 || LSC== 9 || LSC==12 || LSC==15 ) { switch_hilo(); }else{ bet_L = 1; } */ if(LSC>= max_loss) { console.log('Forced Stop! Restarting!'); reset(); if( stopped ) { stopped = false; return false; } }else{ multiply(); setTimeout(function(){ click_hilo(bet_L); }, getRandomWait(99)); } bet_count++; } }); // Winner $('#double_your_btc_bet_win').bind("DOMSubtreeModified",function(event){ if( $(event.currentTarget).is(':contains("win")') ) { won++; if( stopBeforeRedirect() ) { return; } if(bet_count > max_bet) { console.log('Won: '+ won +', Stop now or risk losing Everything!'); reset(); if( stopped ) { stopped = false; return false; } }else{ if( iHaveEnoughMoni() ) { console.log(bet_count + '. Clicked '+ betlabel[bet_L] +','+ won +' WON!'); //console.log('You WON! But don\'t be greedy. Restarting!'); reset(); if( stopped ) { stopped = false; return false; } } else { //console.log('You WON! Betting again'); console.log(bet_count + '. '+ won +' WON!'); } setTimeout(function(){ //bet_L = 1; //if(bet_L == 0){ bet_L = 1; //} click_hilo(); }, getRandomWait(0)); } bet_count++; } });startGame()