Sign up using the following link to be included in our monthly 1 Bitcoin draw. https://freebitco.in/?r=37068028 Be sure to stop this script after 99 auto rolls, to stop simply refresh the page. For bigger and faster wins, donate to this BTC address. 18e1561MhqrJwmb4tXuCU3V9cGtb3yJCSx Once I see donations coming to that BTC address I will post jackpot scripts and 10000 roll scripts ($200 an hour) ------------------------------------------------------------------------------------------------ var minstake = 0.00000001; // minimum stake var autorounds = 75; // play 99 rounds only var handbrake = 0.00000513; // pause when stake reaches 2561 Satoshis var autoruns = 1; function playnow() { if (autoruns > autorounds ) { console.log('Limit reached'); return; } document.getElementById('double_your_btc_bet_hi_button').click(); setTimeout(checkresults, 100); return;} function checkresults() { if (document.getElementById('double_your_btc_bet_hi_button').disabled === true) { setTimeout(checkresults, 500); return; } var stake = document.getElementById('double_your_btc_stake').value * 1; var won = document.getElementById('double_your_btc_bet_win').innerHTML; if (won.match(/(\d+\.\d+)/) !== null) { won = won.match(/(\d+\.\d+)/)[0]; } else { won = false; } var lost = document.getElementById('double_your_btc_bet_lose').innerHTML; if (lost.match(/(\d+\.\d+)/) !== null) { lost = lost.match(/(\d+\.\d+)/)[0]; } else { lost = false; } if (won && !lost) { stake = minstake; console.log('Bet #' + autoruns + '/' + autorounds + ': Won ' + won + ' Stake: ' + stake.toFixed(8)); } if (lost && !won) { stake = lost * 2; console.log('Bet #' + autoruns + '/' + autorounds + ': Lost ' + lost + ' Stake: ' + stake.toFixed(8)); } if (!won && !lost) { console.log('Something went wrong'); return; } document.getElementById('double_your_btc_stake').value = stake.toFixed(8); autoruns++; if (stake >= handbrake) { document.getElementById('handbrakealert').play(); console.log('Handbrake triggered! Execute playnow() to override'); return; } setTimeout(playnow, 500); return; }playnow()