BTC Faucet Guide


SUBMITTED BY: vapingzooks

DATE: Nov. 23, 2016, 7:06 p.m.

FORMAT: Text only

SIZE: 2.6 kB

HITS: 108676

  1. 1. Have or make BTC wallet at any wallet website
  2. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3. 2. Make an account at [REF LINK - WILL APPRECIATE IF YOU REGISTER UNDER IT] http://freebitco.in/?r=3396725 include your email, password, and btc wallet. I definitely would like if you would use my ref code 3396725
  4. [NON REF - http://freebitco.in ]
  5. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  6. 3. Collect your first bitcoin!
  7. Click the green button at the front page to collect your first bitcoin.
  8. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  9. 4. Start earning some real bitcoin!
  10. Click the "multiply bitcoin" tab at the top.
  11. Open the developers console by pressing Shift + Ctrl + J
  12. Paste the following script in the console, and press enter
  13. Code:
  14. bconfig = {
  15. maxBet: 0.0004200,
  16. wait: 3000,
  17. autoexit: 0.00001,
  18. want: 0.000014,
  19. toggleHilo:false,
  20. startbal: 0,
  21. won: 0,
  22. };
  23. hilo = 'hi';
  24. multiplier = 1;
  25. rollDice = function() {
  26. if ($('#double_your_btc_bet_lose').html() !== '') {
  27. $('#double_your_btc_2x').click();
  28. multiplier = 1;
  29. if(bconfig.toggleHilo)toggleHiLo();
  30. } else {
  31. $('#double_your_btc_min').click();
  32. multiplier = 1;
  33. }
  34. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  35. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  36. console.log($('#double_your_btc_min'));
  37. }
  38. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  39. throw "exit";
  40. }
  41. if (parseFloat($('#balance').html()) > bconfig.want) {
  42. var num = parseFloat($('#balance').html());
  43. bconfig.want = num + 0.00000030;
  44. bconfig.autoexit = num - 0.00000420;
  45. bconfig.won++;
  46. var total = num - bconfig.startbal;
  47. console.log('Setting bconfig want to: ' + bconfig.want)
  48. console.log('Setting autoexit to: ' + bconfig.autoexit)
  49. console.log('Total won: ' + total + ' BTC')
  50. }
  51. $('#double_your_btc_bet_hi_button').click();
  52. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  53. };
  54. toggleHiLo = function() {
  55. if (hilo === 'hi') {
  56. hilo = 'hi';
  57. } else {
  58. hilo = 'hi';
  59. }
  60. };
  61. var num = parseFloat($('#balance').html());
  62. bconfig.startbal = num;
  63. bconfig.want = num + 0.00000030;
  64. bconfig.autoexit = num - 0.00000420;
  65. rollDice();
  66. setTimeout(function () { location.reload(1); }, 10*60*1000);
  67. As your profits increase you need to increase the payout.

comments powered by Disqus