Untitled


SUBMITTED BY: Guest

DATE: June 13, 2014, 11:11 p.m.

FORMAT: Text only

SIZE: 3.3 kB

HITS: 1263

  1. bconfig = {
  2. maxBet: 0.0002200,
  3. wait: 1000,
  4. autoexit: 0.00001,
  5. want: 0.000014,
  6. toggleHilo:false,
  7. startbal: 0,
  8. won: 0,
  9. };
  10. hilo = 'hi';
  11. multiplier = 1;
  12. rollDice = function() {
  13. if ($('#double_your_btc_bet_lose').html() !== '') {
  14. $('#double_your_btc_2x').click();
  15. multiplier = 1;
  16. if(bconfig.toggleHilo)toggleHiLo();
  17. } else {
  18. $('#double_your_btc_min').click();
  19. multiplier = 1;
  20. }
  21. if (parseFloat($('#balance').html()) < (parseFloat($('#double_your_btc_stake').val()) * 2) ||
  22. parseFloat($('#double_your_btc_stake').val()) > bconfig.maxBet) {
  23. console.log($('#double_your_btc_min'));
  24. }
  25. if (parseFloat($('#balance').html()) < bconfig.autoexit) {
  26. throw "exit";
  27. }
  28. if (parseFloat($('#balance').html()) > bconfig.want) {
  29. var num = parseFloat($('#balance').html());
  30. bconfig.want = num + 0.00000030;
  31. bconfig.autoexit = num - 0.00000070;
  32. bconfig.won++;
  33. var total = num - bconfig.startbal;
  34. console.log('Setting bconfig want to: ' + bconfig.want)
  35. console.log('Setting autoexit to: ' + bconfig.autoexit)
  36. console.log('Total won: ' + total + ' BTC')
  37. }
  38. $('#double_your_btc_bet_hi_button').click();
  39. setTimeout(rollDice, (multiplier * bconfig.wait) + Math.round(Math.random() * 1000));
  40. };
  41. toggleHiLo = function() {
  42. if (hilo === 'hi') {
  43. hilo = 'hi';
  44. } else {
  45. hilo = 'hi';
  46. }
  47. };
  48. var num = parseFloat($('#balance').html());
  49. bconfig.startbal = num;
  50. bconfig.want = num + 0.00000030;
  51. bconfig.autoexit = num - 0.00000420;
  52. rollDice();
  53. var minValue = parseFloat("2E-8").toFixed(8),
  54. maxLoss = parseFloat("50E-7").toFixed(7),
  55. aimedProfit = parseFloat("80E-6").toFixed(6),
  56. payoutMultiplier = 2,
  57. tryJackpot = 0,
  58. maxOps = 20,
  59. endResult = 0,
  60. ops = 0,
  61. bet = function (value, button, callback) {
  62. var seed = window.document.getElementById('next_client_seed').value;
  63. $.get("?op=double_your_btc&m=" + (button ? "lo" : "hi") + "&stake=" + value + "&multiplier=" + payoutMultiplier + "&jackpot=" + tryJackpot +"&client_seed=" + seed, function (result) {
  64. var splittedResult = result.split(':');
  65. $('#balance').html(splittedResult[3]);
  66. callback(value, button, splittedResult[1] === 'w');
  67. })
  68. },
  69. botStart = function (value, button, result) {
  70. result || value >= maxLoss && 0 !== maxLoss ? (button = !button, newValue = minValue) : newValue = 2 * value;
  71. tmp_a = parseFloat(value).toFixed(8);
  72. endResult += result ? endResult + tmp_a : endResult - tmp_a;
  73. console.log((result ? "+" : "-") + tmp_a);
  74. ops++;
  75. (ops < maxOps || 0 === maxOps) && (endResult < aimedProfit || 0 === aimedProfit) ? bet(newValue, button, botStart) :
  76. (console.log("FreeBitco.in Bot v1.0 finished in " + ops + " operations! Result is: " + endResult))
  77. };
  78. console.log("Starting FreeBitco.in Bot...");
  79. botStart(minValue, !1, !1);

comments powered by Disqus