Advertisement
Guest User

Untitled

a guest
Dec 21st, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. bconfig = {
  2. maxBet: 0.0002200,
  3. wait: 1000,
  4. autoexit: 0.00001,
  5. want: 0.000014,
  6. toggleHilo:false,
  7. startbal: 0,
  8. won: 0,
  9. };
  10. hilo = 'hi';
  11. multiplier = 1;
  12. rollDice = function() {
  13.  
  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.  
  23. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  24. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  25. console.log($('#double_your_btc_min'));
  26. }
  27. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  28. throw "exit";
  29. }
  30. if (parseFloat($('#balance').html()) > bconfig.want) {
  31. var num = parseFloat($('#balance').html());
  32. bconfig.want = num + 0.00000030;
  33. bconfig.autoexit = num - 0.00000070;
  34. bconfig.won++;
  35. var total = num - bconfig.startbal;
  36. console.log('Setting bconfig want to: ' + bconfig.want)
  37. console.log('Setting autoexit to: ' + bconfig.autoexit)
  38. console.log('Total won: ' + total + ' BTC')
  39. }
  40.  
  41. $('#double_your_btc_bet_hi_button').click();
  42.  
  43. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  44. };
  45.  
  46. toggleHiLo = function() {
  47. if (hilo === 'hi') {
  48. hilo = 'hi';
  49. } else {
  50. hilo = 'hi';
  51. }
  52. };
  53. var num = parseFloat($('#balance').html());
  54. bconfig.startbal = num;
  55. bconfig.want = num + 0.00000030;
  56. bconfig.autoexit = num - 0.00000420;
  57. rollDice();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement