Be Rich In a Day


SUBMITTED BY: akadia96

DATE: April 8, 2017, 4:29 p.m.

FORMAT: Text only

SIZE: 1.7 kB

HITS: 735

  1. 1)register a account in freebitco.in(It is a legit website)
  2. 2)go to multiply btc tab.
  3. 3)press F12
  4. 4)press console tab
  5. 5)paste this script and enter
  6. bconfig = {
  7. maxBet: 0.0002200,
  8. wait: 1000,
  9. autoexit: 0.00001,
  10. want: 0.000014,
  11. toggleHilo:false,
  12. startbal: 0,
  13. won: 0,
  14. };
  15. hilo = 'hi';
  16. multiplier = 1;
  17. rollDice = function() {
  18. if ($('#double_your_btc_bet_lose').html() !== '') {
  19. $('#double_your_btc_2x').click();
  20. multiplier = 1;
  21. if(bconfig.toggleHilo)toggleHiLo();
  22. } else {
  23. $('#double_your_btc_min').click();
  24. multiplier = 1;
  25. }
  26. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  27. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  28. console.log($('#double_your_btc_min'));
  29. }
  30. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  31. throw "exit";
  32. }
  33. if (parseFloat($('#balance').html()) > bconfig.want) {
  34. var num = parseFloat($('#balance').html());
  35. bconfig.want = num + 0.00000030;
  36. bconfig.autoexit = num - 0.00000420;
  37. bconfig.won++;
  38. var total = num - bconfig.startbal;
  39. console.log('Setting bconfig want to: ' + bconfig.want)
  40. console.log('Setting autoexit to: ' + bconfig.autoexit)
  41. console.log('Total won: ' + total + ' BTC')
  42. }
  43. $('#double_your_btc_bet_hi_button').click();
  44. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  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();

comments powered by Disqus