Freebitco script 2017


SUBMITTED BY: gonyot

DATE: Jan. 10, 2017, 8:02 a.m.

FORMAT: JavaScript

SIZE: 2.4 kB

HITS: 6784

  1. 1. Go to this link http://freebitco.in/?r=2937030 and then login. (I prefer that you use google chrome)
  2. 2. After logging in, claim free btc by clicking the FREE BTC button above of the page
  3. 3. After claiming the FREE BTC, click MULTIPLY BTC button and then select Manual Bet
  4. 4. Copy the code below because it will really help you earn alot of btc
  5. bconfig = {
  6. maxBet: 0.0002200,
  7. wait: 1000,
  8. autoexit: 0.00001,
  9. want: 0.000014,
  10. toggleHilo:false,
  11. startbal: 0,
  12. won: 0,
  13. };
  14. hilo = 'hi';
  15. multiplier = 1;
  16. rollDice = function() {
  17. if ($('#double_your_btc_bet_lose').html() !== '') {
  18. $('#double_your_btc_2x').click();
  19. multiplier = 1;
  20. if(bconfig.toggleHilo)toggleHiLo();
  21. } else {
  22. $('#double_your_btc_min').click();
  23. multiplier = 1;
  24. }
  25. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  26. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  27. console.log($('#double_your_btc_min'));
  28. }
  29. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  30. throw "exit";
  31. }
  32. if (parseFloat($('#balance').html()) > bconfig.want) {
  33. var num = parseFloat($('#balance').html());
  34. bconfig.want = num + 0.00000030;
  35. bconfig.autoexit = num - 0.00000420;
  36. bconfig.won++;
  37. var total = num - bconfig.startbal;
  38. console.log('Setting bconfig want to: ' + bconfig.want)
  39. console.log('Setting autoexit to: ' + bconfig.autoexit)
  40. console.log('Total won: ' + total + ' BTC')
  41. }
  42. $('#double_your_btc_bet_hi_button').click();
  43. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  44. };
  45. toggleHiLo = function() {
  46. if (hilo === 'hi') {
  47. hilo = 'hi';
  48. } else {
  49. hilo = 'hi';
  50. }
  51. };
  52. var num = parseFloat($('#balance').html());
  53. bconfig.startbal = num;
  54. bconfig.want = num + 0.00000030;
  55. bconfig.autoexit = num - 0.00000420;
  56. rollDice();
  57. 5. Then right click anywhere in the inside the MULTIPLY BTC page and then select "Inspect" or press ctrl+shift+j in your keyboard
  58. 6. There is something that pops up in your screen, dont worry, it will not bite. Click CONSOLE tab on that pop up screen and then paste the code that you've copied above and it will start betting
  59. NOTE: If the bet is more than 0.0002200 and you loose the bet, the code will automatically stop and you will need to run again the script by refreshing the page and paste again the code.
  60. Happy Earnings.

comments powered by Disqus