Advertisement
coinwalk

ok

Dec 18th, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. chance = 39.96
  2. multiplier = 1.963
  3.  
  4. basefactor = 10 -- Basebet in satoshis
  5. prebet = 0.00000001
  6. preroll = 1
  7.  
  8. target = balance+0.00050000
  9.  
  10. nextbet = prebet
  11. losecount = 0
  12. betcount = 0
  13. bethigh = true
  14. highloss = 0
  15. hibet = 0
  16. totalloss = 0
  17. totalwin = 0
  18. wincount = 0
  19. aveloss = 0
  20. hbid = 0
  21. counter = 0
  22.  
  23. e=0
  24.  
  25. --resetseed() -- If you want to reset the seed
  26. --resetstats() -- If you want to reset the stats after a session, remove the double dash in front.
  27.  
  28. function dobet()
  29.  
  30. e = currentstreak+preroll
  31. -- ==counter ==
  32.  
  33. if counter==500 then
  34.  
  35. resetseed()
  36. counter=0
  37.  
  38. else
  39.  
  40. counter+=1
  41. end
  42.  
  43.  
  44. print(" ")
  45. print("Total Bet : "..betcount)
  46. print("Current Streak Loss : "..losecount)
  47. print("Highest Loss Streak : "..highloss)
  48. print("Average Loss Streak : "..string.format("%.2f",aveloss))
  49. print("Highest Bet :"..string.format("%.8f",hibet))
  50. print("Highest Win Bet ID : "..hbid)
  51. print("Profit :"..string.format("%.8f",profit))
  52. print(" ")
  53. print("Bet Amount :"..string.format("%.8f",nextbet))
  54. print("Current Balance : "..string.format("%.8f",balance))
  55. print(" ")
  56.  
  57. if base<prebet then
  58. base = prebet
  59. end
  60.  
  61. if win then
  62. if highloss == losecount then
  63. hbid=lastBet.Id
  64. end
  65.  
  66. nextbet = prebet
  67. wincount+=1
  68. totalwin+=1
  69. totalloss+=losecount
  70. aveloss=totalloss/totalwin
  71. losecount = 0
  72. betcount += 1
  73.  
  74.  
  75. if balance>target then
  76. stop()
  77. ching()
  78. print(" ")
  79. print("TARGET REACHED :"..string.format("%.8f",target))
  80. print("Current Balance : "..string.format("%.8f",balance))
  81. print(" ")
  82. end
  83.  
  84. else
  85. losecount += 1
  86. betcount += 1
  87. nextbet = prebet
  88.  
  89. end
  90.  
  91. if losecount > highloss then
  92. highloss = losecount
  93. end
  94.  
  95. if losecount >1 then
  96. nextbet = prebet
  97. end
  98.  
  99. if losecount > 3 then
  100. nextbet = prebet * basefactor
  101. end
  102.  
  103. if losecount > 4 then
  104. nextbet = previousbet*multiplier
  105. end
  106.  
  107. if nextbet > hibet then
  108. hibet=nextbet
  109. end
  110.  
  111.  
  112. end
  113. end
  114.  
  115.  
  116.  
  117.  
  118. end
  119. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement