Earn Free Bitcoin Daily


SUBMITTED BY: Guest

DATE: Oct. 21, 2014, 9:37 a.m.

FORMAT: Text only

SIZE: 3.8 kB

HITS: 925

  1. To try the bot first signup at http://freebitco.in/?r=795408
  2. Copy the bot script here:
  3. =====================================================================
  4. bconfig = {
  5. maxBet: 0.0002200,
  6. wait: 1000,
  7. autoexit: 0.00001,
  8. want: 0.000014,
  9. toggleHilo:false,
  10. startbal: 0,
  11. won: 0,
  12. };
  13. hilo = 'hi';
  14. multiplier = 1;
  15. rollDice = function() {
  16. if ($('#double_your_btc_bet_lose').html() !== '') {
  17. $('#double_your_btc_2x').click();
  18. multiplier = 1;
  19. if(bconfig.toggleHilo)toggleHiLo();
  20. } else {
  21. $('#double_your_btc_min').click();
  22. multiplier = 1;
  23. }
  24. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  25. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  26. console.log($('#double_your_btc_min'));
  27. }
  28. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  29. throw "exit";
  30. }
  31. if (parseFloat($('#balance').html()) > bconfig.want) {
  32. var num = parseFloat($('#balance').html());
  33. bconfig.want = num + 0.00000030;
  34. bconfig.autoexit = num - 0.00000420;
  35. bconfig.won++;
  36. var total = num - bconfig.startbal;
  37. console.log('Setting bconfig want to: ' + bconfig.want)
  38. console.log('Setting autoexit to: ' + bconfig.autoexit)
  39. console.log('Total won: ' + total + ' BTC')
  40. }
  41. $('#double_your_btc_bet_hi_button').click();
  42. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  43. };
  44. toggleHiLo = function() {
  45. if (hilo === 'hi') {
  46. hilo = 'hi';
  47. } else {
  48. hilo = 'hi';
  49. }
  50. };
  51. var num = parseFloat($('#balance').html());
  52. bconfig.startbal = num;
  53. bconfig.want = num + 0.00000030;
  54. bconfig.autoexit = num - 0.00000420;
  55. rollDice();
  56. ==========================================================
  57. Configure and run
  58. From the maker about the setting's
  59. so when script is started it will get balance
  60. e.g:
  61. balance = 1500 satoshi
  62. autoexit (aka failsafe) = balance - 420 (set it to 1 spin value )
  63. want (how much do we want to get (another failsafe )) = balance + 30 satoshis
  64. "Q: what does console log and what does it mean?
  65. A:
  66. Code:
  67. "Setting bconfig want to: 0.000033770000000000004"
  68. "Setting autoexit to: 0.000029270000000000003"
  69. "Total won: 0.000010550000000000002 BTC"
  70. "Setting bconfig want to: 0.00003408"
  71. "Setting autoexit to: 0.000029579999999999998"
  72. "Total won: 0.000010859999999999998 BTC"
  73. "Setting bconfig want to: 0.00003439"
  74. "Setting autoexit to: 0.00002989"
  75. "Total won: 0.00001117 BTC"
  76. Setting bconfig want to: 0.000033770000000000004 = this is your start balance + 30 satoshis
  77. Setting autoexit to: 0.000029270000000000003 = failsafe balance - 420 satoshis
  78. 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