sample 11


SUBMITTED BY: maruf2026

DATE: Jan. 7, 2016, 6:07 p.m.

UPDATED: Aug. 13, 2017, 8:15 a.m.

FORMAT: Text only

SIZE: 1.6 kB

HITS: 900

  1. Freebitco.in script (100% working)
  2. bconfig = {
  3. maxBet: 0.0002200,
  4. wait: 1000,
  5. autoexit: 0.00001,
  6. want: 0.000014,
  7. toggleHilo:false,
  8. startbal: 0,
  9. won: 0,
  10. };
  11. hilo = 'hi';
  12. multiplier = 1;
  13. rollDice = function() {
  14. if ($('#double_your_btc_bet_lose').html() !== '') {
  15. $('#double_your_btc_2x').click();
  16. multiplier = 1;
  17. if(bconfig.toggleHilo)toggleHiLo();
  18. } else {
  19. $('#double_your_btc_min').click();
  20. multiplier = 1;
  21. }
  22. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  23. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  24. console.log($('#double_your_btc_min'));
  25. }
  26. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  27. throw "exit";
  28. }
  29. if (parseFloat($('#balance').html()) > bconfig.want) {
  30. var num = parseFloat($('#balance').html());
  31. bconfig.want = num + 0.00000030;
  32. bconfig.autoexit = num - 0.00000420;
  33. bconfig.won++;
  34. var total = num - bconfig.startbal;
  35. console.log('Setting bconfig want to: ' + bconfig.want)
  36. console.log('Setting autoexit to: ' + bconfig.autoexit)
  37. console.log('Total won: ' + total + ' BTC')
  38. }
  39. $('#double_your_btc_bet_hi_button').click();
  40. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  41. };
  42. toggleHiLo = function() {
  43. if (hilo === 'hi') {
  44. hilo = 'hi';
  45. } else {
  46. hilo = 'hi';
  47. }
  48. };
  49. var num = parseFloat($('#balance').html());
  50. bconfig.startbal = num;
  51. bconfig.want = num + 0.00000030;
  52. bconfig.autoexit = num - 0.00000420;
  53. rollDice();

comments powered by Disqus