WORKING SCRIPT FREEBITCO1


SUBMITTED BY: Guest

DATE: Aug. 5, 2015, 5:19 p.m.

FORMAT: Text only

SIZE: 1.4 kB

HITS: 432

  1. rollDice = function() {
  2. // wait until button is clickable again
  3. if (!$('#double_your_btc_bet_hi_button').prop('disabled')) {
  4. // win: double amount / reset to 1 if lost [multiplier] rounds
  5. // this option is useful 'cause the max. win profit is 99, so after you spent
  6. // 127 [ ((2^7)-1) or 1+2+4+8+16+32+64 ] it's impossible to make profit anymore
  7. // since there's no 128 option (so set it max. to 6!)
  8. // decrease the multiplier to keep the losses low, but the chance of winning will
  9. // also drop if you loose very often consecutively
  10. if ($('#double_your_btc_bet_lose').html() !== '' && multiplier < 5) {
  11. $('#double_your_btc_2x').click();
  12. multiplier++;
  13. // lose: reset to 1
  14. } else {
  15. $('#double_your_btc_min').click();
  16. multiplier = 1;
  17. }
  18. // click hi or lo button randomly
  19. if (Math.random() >= 0.5) {
  20. $('#double_your_btc_bet_lo_button').click();
  21. } else {
  22. $('#double_your_btc_bet_hi_button').click();
  23. }
  24. }
  25. // wait 250ms before next run. don't set the timeout to zero because if the button is still
  26. // unclickable this will cause very high cpu usage!
  27. setTimeout(rollDice, 250);
  28. };
  29. // initialise
  30. multiplier = 1;
  31. rollDice();

comments powered by Disqus