$$$ on Autopilot !!! AutosurfTraffic / PTC http-bots


SUBMITTED BY: phroyd

DATE: June 2, 2016, 5:22 p.m.

FORMAT: Text only

SIZE: 1.2 kB

HITS: 2331

  1. $$$ on Autopilot !!! AutosurfTraffic / PTC http-bots
  2. http://z-bot.org/unibots
  3. ;--------------------------------------------------------
  4. --Set Profit Target BTC (Current Balance + Profit)
  5. target=999.0000000 --BTC
  6. --Basebet
  7. base=0.00000001
  8. --Seed Reset
  9. resetvalue=100
  10. winchance= 33.0
  11. multiplier=2.1
  12. losscount=0
  13. nextbet=base
  14. wintotal=0
  15. function dobet()
  16. if resetvalue == 100 then
  17. resetvalue=0
  18. resetseed();
  19. print("Current Profit at Seed Reset")
  20. print(string.format("%.8f", wintotal))
  21. else
  22. resetvalue=resetvalue+1
  23. wintotal=wintotal+currentprofit
  24. end
  25. if (balance) >= target then
  26. print("Current Profit")
  27. print(string.format("%.8f", wintotal))
  28. print(balance)
  29. print("TARGET ACHIEVED!!!")
  30. stop();
  31. end
  32. if (balance) < (nextbet) then
  33. stop();
  34. print("Insufficient Balance")
  35. end
  36. if losscount==14 then
  37. chance=49.5
  38. nextbet= previousbet*1.3
  39. end
  40. --Randomizer
  41. r=math.random(10)
  42. if r >= 5 then
  43. bethigh=true
  44. else
  45. bethigh=false
  46. end
  47. if win then
  48. nextbet=base
  49. losscount=0
  50. chance=winchance
  51. else
  52. if losscount < 2 then
  53. nextbet = base
  54. else
  55. nextbet = previousbet * multiplier
  56. end
  57. losscount=losscount+1
  58. end
  59. end

comments powered by Disqus