Advertisement
port36

freebitco.in script bot

Apr 17th, 2014
5,909
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. http://freebitco.in/?r=426365 please use this referer address for registration thx
  2. Choose Multiply BTC. press f12 in the browser chrome, insert the script and press enter.
  3.  
  4. bconfig = {
  5.   maxBet: 0.00000256,
  6.   wait: 700,
  7.   toggleHilo:false
  8. };
  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++;
  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.     $('#double_your_btc_min').click();
  26.   }
  27.  
  28.   $('#double_your_btc_bet_' + hilo + '_button').click();
  29.  
  30.   setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 100));
  31. };
  32.  
  33. toggleHiLo = function() {
  34.   if (hilo === 'hi') {
  35.     hilo = 'lo';
  36.   } else {
  37.     hilo = 'hi';
  38.   }
  39. };
  40.  
  41. rollDice();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement