Elmo Double Martingale Winning Script


SUBMITTED BY: ahmart

DATE: April 25, 2016, 10:43 a.m.

FORMAT: Text only

SIZE: 1.1 kB

HITS: 677

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

comments powered by Disqus