Freebitco.in script - Feb-2015


SUBMITTED BY: Guest

DATE: Feb. 12, 2015, 9:28 p.m.

FORMAT: Text only

SIZE: 2.0 kB

HITS: 952

  1. Sign up Using this link http://freebitco.in/?r=657294
  2. Chrome: Ctrl+Shift+J
  3. past and enjoy
  4. Firefox: Right Click on MULTIPLY YOUR BTC
  5. then right click Inspect Element
  6. past in Console Tap
  7. Enjoy
  8. This is script down
  9. bconfig = {
  10. maxBet: 0.0002200,
  11. wait: 1000,
  12. autoexit: 0.00001,
  13. want: 0.000014,
  14. toggleHilo:false,
  15. startbal: 0,
  16. won: 0,
  17. };
  18. hilo = 'hi';
  19. multiplier = 1;
  20. rollDice = function() {
  21. if ($('#double_your_btc_bet_lose').html() !== '') {
  22. $('#double_your_btc_2x').click();
  23. multiplier = 1;
  24. if(bconfig.toggleHilo)toggleHiLo();
  25. } else {
  26. $('#double_your_btc_min').click();
  27. multiplier = 1;
  28. }
  29. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  30. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  31. console.log($('#double_your_btc_min'));
  32. }
  33. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  34. throw "exit";
  35. }
  36. if (parseFloat($('#balance').html()) > bconfig.want) {
  37. var num = parseFloat($('#balance').html());
  38. bconfig.want = num + 0.00000030;
  39. bconfig.autoexit = num - 0.00000420;
  40. bconfig.won++;
  41. var total = num - bconfig.startbal;
  42. console.log('Setting bconfig want to: ' + bconfig.want)
  43. console.log('Setting autoexit to: ' + bconfig.autoexit)
  44. console.log('Total won: ' + total + ' BTC')
  45. }
  46. $('#double_your_btc_bet_hi_button').click();
  47. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  48. };
  49. toggleHiLo = function() {
  50. if (hilo === 'hi') {
  51. hilo = 'hi';
  52. } else {
  53. hilo = 'hi';
  54. }
  55. };
  56. var num = parseFloat($('#balance').html());
  57. bconfig.startbal = num;
  58. bconfig.want = num + 0.00000030;
  59. bconfig.autoexit = num - 0.00000420;
  60. rollDice();

comments powered by Disqus