Earn Free BitCoin Daily


SUBMITTED BY: Guest

DATE: Oct. 26, 2014, 4:29 a.m.

FORMAT: Text only

SIZE: 6.2 kB

HITS: 1077

  1. To try the bot first signup at http://freebitco.in/?r=795408
  2. First login your account. Then go to multiply btc. Right click on page. Then select Inspect Element.
  3. Then go to console tab and paste this script.
  4. =====================================================================
  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. ==========================================================
  58. Configure and run
  59. From the maker about the setting's
  60. so when script is started it will get balance
  61. e.g:
  62. balance = 1500 satoshi
  63. autoexit (aka failsafe) = balance - 420 (set it to 1 spin value )
  64. want (how much do we want to get (another failsafe )) = balance + 30 satoshis
  65. "Q: what does console log and what does it mean?
  66. A:
  67. Code:
  68. "Setting bconfig want to: 0.000033770000000000004"
  69. "Setting autoexit to: 0.000029270000000000003"
  70. "Total won: 0.000010550000000000002 BTC"
  71. "Setting bconfig want to: 0.00003408"
  72. "Setting autoexit to: 0.000029579999999999998"
  73. "Total won: 0.000010859999999999998 BTC"
  74. "Setting bconfig want to: 0.00003439"
  75. "Setting autoexit to: 0.00002989"
  76. "Total won: 0.00001117 BTC"
  77. Setting bconfig want to: 0.000033770000000000004 = this is your start balance + 30 satoshis
  78. Setting autoexit to: 0.000029270000000000003 = failsafe balance - 420 satoshis
  79. Total won: 0.000010550000000000002 BTC = how much did you won with running this script "For more Q & A check the Thebot.nets thread from the maker.

comments powered by Disqus