FREEBITCO.IN JS BOT


SUBMITTED BY: Guest

DATE: April 16, 2014, 3:39 p.m.

FORMAT: Text only

SIZE: 1.4 kB

HITS: 762

  1. freebitco.in bot
  2. copy and paste this js code in chrome console (CTRL+SHIFT+J) with freebitco.in multiply btc page open and press enter in console. ENJOY!
  3. var minValue = 50E-8,
  4. maxLoss = 1E-4,
  5. aimedProfit = 1E-2,
  6. maxOps = 100,
  7. endResult = 0,
  8. ops = 0,
  9. payoutMultiplier = 2,
  10. tryJackpot = 1,
  11. bet = function (a, b, c) {
  12. var seed = window.document.getElementById('next_client_seed').value;
  13. $.get("?op=double_your_btc&m=" + (b ? "lo" : "hi") + "&stake=" + a + "&multiplier=" + payoutMultiplier + "&jackpot=" + tryJackpot +"&client_seed=" + seed, function (d) {
  14. d = d.split(":");
  15. $("#balance").html(d[3]);
  16. c(a, b, "w" === d[1])
  17. })
  18. },
  19. botStart = function (a, b, c) {
  20. c || a >= maxLoss && 0 !== maxLoss ? (b = !b, newValue = minValue) : newValue = 2 * a;
  21. endResult = c ? endResult + a : endResult - a;
  22. tmp_a = parseFloat(a).toFixed(8);
  23. console.log((c ? "+" : "-") + tmp_a);
  24. ops++;
  25. (ops < maxOps || 0 === maxOps) && (endResult < aimedProfit || 0 === aimedProfit) ? bet(newValue, b, botStart) :
  26. (console.log("FreeBitco.in BOT v1.0 finished in " + ops + " operations!"))
  27. };
  28. botStart(minValue, !1, !1);

comments powered by Disqus