8 Chance


SUBMITTED BY: bubby131

DATE: Oct. 24, 2017, 11:20 p.m.

FORMAT: Text only

SIZE: 2.5 kB

HITS: 345

  1. --Scrypt created by mcguyver37 (Elmo)
  2. -- 8.91% Chance Strategy
  3. -- Recommended Balance 0.01 BTC Bankroll
  4. -- Can Endure 70+ Losing Streaks at 0.001 to 0.01 BTC balance
  5. -- To endure 90 Losing Streaks, edit the betfactor =>> betfactor=0.000025
  6. -- Donations Accepted, Send to = 33kx7iqfjSLuEAoW7EasLs83vontLmCvAE (BTC Address)
  7. -- 8.91% Chance Strategy
  8. chance = 8.91 -->> 8.91% Win Chance
  9. betfactor=0.00005
  10. base=balance*betfactor -->> 50 Sats BB at 0.01 BTC Bankroll, Auto Adjust to Increasing Bankroll
  11. prebet = 0.00000001
  12. multiplier=1.1111 -- >> 11.11% Increase on Lose
  13. target=0.00100000 -- <<Stop at this Profit Target>>
  14. nextbet = prebet
  15. losecount = 0
  16. betcount = 0
  17. bethigh=false
  18. wincount=0
  19. highloss=0
  20. totalloss=0
  21. total=0
  22. avehit=0
  23. counter=0
  24. b=0
  25. low=0
  26. high=0
  27. --resetstats()
  28. resetseed()
  29. function dobet()
  30. if (lastBet.roll < chance) then
  31. low += 1
  32. end
  33. if (lastBet.roll > (100 - chance)) then
  34. high += 1
  35. end
  36. print(" ")
  37. print("Total Bet : "..betcount)
  38. print("Current Streak Loss : "..losecount)
  39. print("Highest Loss Streak : "..highloss)
  40. print("Number of Wins : "..wincount)
  41. print("Average Losses Before Win : "..string.format("%.2f",avehit))
  42. print("Profit :"..string.format("%.8f",profit))
  43. print(" ")
  44. print("Bet Amount :"..string.format("%.8f",nextbet))
  45. print("Current Balance : "..string.format("%.8f",balance))
  46. print("High :"..high.." / ".."Low :"..low)
  47. print(" ")
  48. if counter > 500 then
  49. resetseed()
  50. low=0
  51. high=0
  52. counter=0
  53. else
  54. counter+=1
  55. end
  56. if win then
  57. base=balance*betfactor
  58. nextbet = prebet
  59. wincount+=1
  60. total+=1
  61. totalloss+=losecount
  62. avehit=totalloss/total
  63. losecount = 0
  64. betcount += 1
  65. b+=1
  66. if b>1 then
  67. bethigh=!bethigh
  68. b=0
  69. end
  70. if profit>target then
  71. stop()
  72. print("TARGET REACHED!")
  73. end
  74. else
  75. losecount += 1
  76. betcount += 1
  77. nextbet = prebet
  78. end
  79. if losecount > highloss then
  80. highloss = losecount
  81. end
  82. if (losecount > 9) then
  83. nextbet = 0.00000002
  84. end
  85. if (losecount > 13) then
  86. nextbet = balance*betfactor
  87. if nextbet<0.00000005 then
  88. nextbet=0.00000005
  89. end
  90. end
  91. if (losecount > 14) then
  92. nextbet = previousbet*multiplier
  93. end
  94. end
  95. end
  96. end

comments powered by Disqus