Advertisement
Guest User

Constant BaseBet, 30% recovery

a guest
Feb 24th, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.64 KB | None | 0 0
  1. chance = 49.5
  2. base = 0.00000020
  3. nextbet = base
  4. stage = 2
  5. bigstage = 0
  6. losestreak = 0
  7. losestreak2 = 0
  8. bigloss = 0
  9. prof = 0
  10. stage2 = 0
  11. stage3 = 0
  12. stage4 = 0
  13. stage5 = 0
  14. stage6 = 0
  15. stage7 = 0
  16. stage8 = 0
  17. stage9 = 0
  18. stage10 = 0
  19. stage11 = 0
  20. stage12 = 0
  21. stage13 = 0
  22. stage14 = 0
  23. stage15 = 0
  24. stage16 = 0
  25. counter = 0
  26. winss = 0
  27. profit200k = 0
  28. profperhour = 0
  29. profperday = 0
  30. bigprof = 0
  31. profperbet = 0
  32. counter2 = 0
  33. worst = 0
  34. cur = 0
  35. worst2 = 0
  36. r = 0
  37. bigbalance = 0
  38. phase = 1
  39.  
  40. function dobet()
  41.  
  42.  
  43. counter += 1
  44.  
  45. r = math.random(10)
  46. if phase == 1 then
  47. if win then
  48. if stage == 2 then
  49. stage2 += 1
  50. end
  51. if stage == 3 then
  52. stage3 += 1
  53. end
  54. if stage == 4 then
  55. stage4 += 1
  56. end
  57. if stage == 5 then
  58. stage5 += 1
  59. end
  60. if stage == 6 then
  61. stage6 += 1
  62. end
  63. if stage == 7 then
  64. stage7 += 1
  65. end
  66. if stage == 8 then
  67. stage8 += 1
  68. end
  69. if stage == 9 then
  70. stage9 += 1
  71. end
  72. if stage == 10 then
  73. stage10 += 1
  74. end
  75. if stage == 11 then
  76. stage11 += 1
  77. end
  78. if stage == 12 then
  79. stage12 += 1
  80. end
  81. if stage == 13 then
  82. stage13 += 1
  83. end
  84. if stage == 14 then
  85. stage14 += 1
  86. end
  87. if stage == 15 then
  88. stage15 += 1
  89. end
  90. if stage == 16 then
  91. stage16 += 1
  92. end
  93. base = 0.00000144
  94. winss += 1
  95. nextbet = base
  96. stage = 2
  97. chance = 49.5
  98. losestreak2 = 0
  99. prof = 0
  100. if r <= 2 then
  101. bethigh = !bethigh
  102. end
  103. else
  104. prof = prof+currentprofit
  105. losestreak += 1
  106. losestreak2 += 1
  107. if losestreak >= (stage+1) then
  108. stage += 1
  109. chance = (99/stage)
  110. losestreak = 0
  111. end
  112. if stage >= 2 then
  113. nextbet = (((prof*-1)+(base*(losestreak2+1)))/(stage-1))
  114. -- nextbet = (((prof*-1)+base)/(stage-1))
  115. end
  116. if losestreak2 >= 20 then
  117. phase = 2
  118. base = ((bigbalance-balance)/30)
  119. nextbet = base
  120. winss += 1
  121. stage = 3
  122. losestreak = 0
  123. chance = 33
  124. losestreak2 = 0
  125. prof = 0
  126. end
  127. end
  128. else
  129. if win then
  130. if stage == 2 then
  131. stage2 += 1
  132. end
  133. if stage == 3 then
  134. stage3 += 1
  135. end
  136. if stage == 4 then
  137. stage4 += 1
  138. end
  139. if stage == 5 then
  140. stage5 += 1
  141. end
  142. if stage == 6 then
  143. stage6 += 1
  144. end
  145. if stage == 7 then
  146. stage7 += 1
  147. end
  148. if stage == 8 then
  149. stage8 += 1
  150. end
  151. if stage == 9 then
  152. stage9 += 1
  153. end
  154. if stage == 10 then
  155. stage10 += 1
  156. end
  157. if stage == 11 then
  158. stage11 += 1
  159. end
  160. if stage == 12 then
  161. stage12 += 1
  162. end
  163. if stage == 13 then
  164. stage13 += 1
  165. end
  166. if stage == 14 then
  167. stage14 += 1
  168. end
  169. if stage == 15 then
  170. stage15 += 1
  171. end
  172. if stage == 16 then
  173. stage16 += 1
  174. end
  175. base = base
  176. prof = 0
  177. winss += 1
  178. nextbet = base
  179. stage = 3
  180. chance = 33
  181. losestreak2 = 0
  182. losestreak = 0
  183. if r <= 2 then
  184. bethigh = !bethigh
  185. end
  186. else
  187. prof = prof+currentprofit
  188. losestreak += 1
  189. losestreak2 += 1
  190. if losestreak >= (stage) then
  191. stage = 3
  192. chance = 33
  193. losestreak = 0
  194. end
  195. if stage >= 2 then
  196. nextbet = (((prof*-1)+(base*(losestreak2+1)))/(stage-1))
  197. -- nextbet = (((prof*-1)+base)/((99/chance)-1))
  198. end
  199. end
  200. if balance >= bigbalance then
  201. phase = 1
  202. bigbalance = balance
  203. base = 0.00000144
  204. winss += 1
  205. nextbet = base
  206. stage = 2
  207. chance = 49.5
  208. losestreak2 = 0
  209. losestreak = 0
  210. prof = 0
  211. end
  212. end
  213. if stage >= bigstage then
  214. bigstage = stage
  215. end
  216. if losestreak2 >= bigloss then
  217. bigloss = losestreak2
  218. end
  219. if profit >= bigprof then
  220. bigprof = profit
  221. counter2 = counter
  222. end
  223. if cur >= 0 then
  224. cur = 0
  225. end
  226. worst = cur + currentprofit
  227. if worst <= worst2 then
  228. worst2 = worst
  229. end
  230. if balance >= bigbalance then
  231. bigbalance = balance
  232. end
  233. prof200k = ((bigprof/counter2)*200000)
  234. profperhour = ((bigprof/counter2)*1.66*60*60)
  235. profperday = ((bigprof/counter2)*1.66*60*60*24)
  236. profperbet = ((bigprof/counter2)*100000000)
  237. if counter%1==0 then
  238. print("Total Wins :"..winss)
  239. print("2 :"..stage2)
  240. print("3 :"..stage3)
  241. print("4 :"..stage4)
  242. print("5 :"..stage5)
  243. print("6 :"..stage6)
  244. print("7 :"..stage7)
  245. print("8 :"..stage8)
  246. print("9 :"..stage9)
  247. print("10 :"..stage10)
  248. print("11 :"..stage11)
  249. print("12 :"..stage12)
  250. print("13 :"..stage13)
  251. print("14 :"..stage14)
  252. print("15 :"..stage15)
  253. print("16 :"..stage16)
  254. print("")
  255. print("Total Bets: "..counter)
  256. print("Balance :"..balance)
  257. print("Highest Stage :"..bigstage)
  258. print("Longest Losing Streak :"..bigloss)
  259. print("Biggest Loss :"..worst2)
  260. print("Profit Per 200k :"..prof200k)
  261. print("Profit Per Day :"..profperday)
  262. print("Profit Per Hour :"..profperhour)
  263. print("Profit Per Bet :"..profperbet)
  264. print("")
  265. print("=====")
  266. print("")
  267. end
  268. if balance >= 0.06 then
  269. stop()
  270. end
  271. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement