Advertisement
Baliarta

CBM

Jun 10th, 2023
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. -- STAND BY ME --
  2. -- HIGH RISK LOW 0.1-10 --
  3. --resetseed()
  4. resetstats()
  5. chance = 50
  6. base = 0.00000001--balance / 10000000 --ATUR STAKE
  7. nextbet = base
  8. d = 1.2
  9. betcount = 0
  10. ------------------------
  11. target = balance+301 --TAKE PROFIT 10%
  12. resetstats()
  13. function dobet()
  14. bethigh = !bethigh
  15. betcount += 1
  16. if betcount >= 300 then
  17. --resetseed()
  18. betcount=0
  19. end
  20.  
  21. if profit > target then
  22. stop()
  23. end
  24.  
  25. if r == 1 then
  26. chance = math.random(10,100)/100
  27. if !win then
  28. nextbet = previousbet*(1+(0.010205*d))
  29. chance = math.random(10,100)/100
  30. end
  31. end
  32.  
  33. if r == 2 then
  34. chance = math.random(10,200)/100
  35. if !win then
  36. nextbet = previousbet*(1+(0.020619*d))
  37. chance = math.random(10,200)/100
  38. end
  39. end
  40.  
  41. if r == 3 then
  42. print("WARNING")
  43. chance = math.random(10,300)/100
  44. if !win then
  45. nextbet = previousbet*(1+(0.00003125*d))
  46. chance = math.random(10,300)/100
  47. end
  48. end
  49.  
  50. if r == 4 then
  51. chance = math.random(10,400)/100
  52. if !win then
  53. nextbet = previousbet*(1+(0.0000042106*d))
  54. chance = math.random(10,400)/100
  55. end
  56. end
  57.  
  58. if r == 5 then
  59. chance = math.random(10,500)/100
  60. if !win then
  61. nextbet = previousbet*(1+(0.000053192*d))
  62. chance = math.random(10,500)/100
  63. end
  64. end
  65.  
  66. if r == 6 then
  67. chance = math.random(10,600)/100
  68. if !win then
  69. nextbet = previousbet*(1+(0.0000064517*d))
  70. chance = math.random(10,600)/100
  71. end
  72. end
  73.  
  74. if r == 7 then
  75. chance = math.random(10,700)/100
  76. if !win then
  77. nextbet = previousbet*(1+(0.0000076087*d))
  78. chance = math.random(10,700)/100
  79. end
  80. end
  81.  
  82. if r == 8 then
  83. chance = math.random(10,800)/100
  84. if !win then
  85. nextbet = previousbet*(1+(0.0000087913*d))
  86. chance = math.random(10,800)/100
  87. end
  88. end
  89.  
  90. if r == 9 then
  91. chance = math.random(10,900)/100
  92. if !win then
  93. nextbet = previousbet*(1+(0.00001*d))
  94. chance = math.random(10,900)/100
  95. end
  96. end
  97.  
  98. if r == 10 then
  99. chance = math.random(10,1000)/100
  100. if !win then
  101. nextbet = previousbet*(1+(0.000011236*d))
  102. chance = math.random(10,1000)/100
  103. end
  104. end
  105.  
  106. if win then
  107. r=math.random(10)
  108. chance = math.random(10,90)
  109. nextbet = base
  110. bethigh = !bethigh
  111. end
  112. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement