Advertisement
Guest User

dfgdfg

a guest
Feb 22nd, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.86 KB | None | 0 0
  1. chance = 49.5
  2. base = 0.00000100
  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.  
  38. function dobet()
  39.  
  40. counter += 1
  41.  
  42. r = math.random(10)
  43.  
  44. if win then
  45. if stage == 2 then
  46. stage2 += 1
  47. end
  48. if stage == 3 then
  49. stage3 += 1
  50. end
  51. if stage == 4 then
  52. stage4 += 1
  53. end
  54. if stage == 5 then
  55. stage5 += 1
  56. end
  57. if stage == 6 then
  58. stage6 += 1
  59. end
  60. if stage == 7 then
  61. stage7 += 1
  62. end
  63. if stage == 8 then
  64. stage8 += 1
  65. end
  66. if stage == 9 then
  67. stage9 += 1
  68. end
  69. if stage == 10 then
  70. stage10 += 1
  71. end
  72. if stage == 11 then
  73. stage11 += 1
  74. end
  75. if stage == 12 then
  76. stage12 += 1
  77. end
  78. if stage == 13 then
  79. stage13 += 1
  80. end
  81. if stage == 14 then
  82. stage14 += 1
  83. end
  84. if stage == 15 then
  85. stage15 += 1
  86. end
  87. if stage == 16 then
  88. stage16 += 1
  89. end
  90. base = base
  91. winss += 1
  92. nextbet = base
  93. stage = 2
  94. chance = 49.5
  95. losestreak2 = 0
  96. prof = 0
  97. if r <= 1 then
  98. bethigh = !bethigh
  99. end
  100. else
  101. prof = prof+currentprofit
  102. losestreak += 1
  103. losestreak2 += 1
  104. if losestreak >= (stage) then
  105. stage += 1
  106. chance = (99/stage)
  107. losestreak = 0
  108. end
  109. if stage >= 2 then
  110. nextbet = (((prof*-1)+(base*(losestreak2+1)))/(stage-1))
  111. -- nextbet = (((prof*-1)+base)/(stage-1))
  112. end
  113. end
  114. if stage >= bigstage then
  115. bigstage = stage
  116. end
  117. if losestreak2 >= bigloss then
  118. bigloss = losestreak2
  119. end
  120. if profit >= bigprof then
  121. bigprof = profit
  122. counter2 = counter
  123. end
  124. if cur >= 0 then
  125. cur = 0
  126. end
  127. worst = cur + currentprofit
  128. if worst <= worst2 then
  129. worst2 = worst
  130. end
  131. prof200k = ((bigprof/counter2)*200000)
  132. profperhour = ((bigprof/counter2)*1.66*60*60)
  133. profperday = ((bigprof/counter2)*1.66*60*60*24)
  134. profperbet = ((bigprof/counter2)*100000000)
  135. if counter%100==0 then
  136. print("Total Wins :"..winss)
  137. print("2 :"..stage2)
  138. print("3 :"..stage3)
  139. print("4 :"..stage4)
  140. print("5 :"..stage5)
  141. print("6 :"..stage6)
  142. print("7 :"..stage7)
  143. print("8 :"..stage8)
  144. print("9 :"..stage9)
  145. print("10 :"..stage10)
  146. print("11 :"..stage11)
  147. print("12 :"..stage12)
  148. print("13 :"..stage13)
  149. print("14 :"..stage14)
  150. print("15 :"..stage15)
  151. print("16 :"..stage16)
  152. print("")
  153. print("Total Bets: "..counter)
  154. print("Balance :"..balance)
  155. print("Highest Stage :"..bigstage)
  156. print("Longest Losing Streak :"..bigloss)
  157. print("Biggest Loss :"..worst2)
  158. print("Profit Per 200k :"..prof200k)
  159. print("Profit Per Day :"..profperday)
  160. print("Profit Per Hour :"..profperhour)
  161. print("Profit Per Bet :"..profperbet)
  162. print("")
  163. print("=====")
  164. print("")
  165. end
  166. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement