freebitco.in bot script


SUBMITTED BY: Guest

DATE: April 14, 2014, 1:53 p.m.

FORMAT: Text only

SIZE: 1.1 kB

HITS: 1132

  1. var minValue = 10E-8,
  2. maxLoss = 10E-7,
  3. aimedProfit = 10,
  4. maxOps = 100,
  5. endResult = 0,
  6. ops = 0,
  7. tryJackpot = 0,
  8. bet = function (a, b, c) {
  9. var seed = window.document.getElementById('next_client_seed').value;
  10. $.get("?op=double_your_btc&m=" + (b ? "lo" : "hi") + "&stake=" + a + "&multiplier=2&jackpot=" + tryJackpot +"&client_seed=" + seed, function (d) {
  11. d = d.split(":");
  12. $("#balance").html(d[3]);
  13. c(a, b, "w" === d[1])
  14. })
  15. },
  16. botStart = function (a, b, c) {
  17. c || a >= maxLoss && 0 !== maxLoss ? (b = !b, newValue = minValue) : newValue = 2 * a;
  18. endResult = c ? endResult + a : endResult - a;
  19. tmp_a = parseFloat(a).toFixed(8);
  20. console.log((c ? "+" : "-") + tmp_a);
  21. ops++;
  22. (ops < maxOps || 0 === maxOps) && (endResult < aimedProfit || 0 === aimedProfit) ? bet(newValue, b, botStart) :
  23. (console.log("FreeBitco.in BOT v1.0 finished in " + ops + " operations!"))
  24. };
  25. botStart(minValue, !1, !1);

comments powered by Disqus