freebitco.in script


SUBMITTED BY: Guest

DATE: April 27, 2014, 7:52 p.m.

FORMAT: Text only

SIZE: 1.1 kB

HITS: 686

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

comments powered by Disqus