Advertisement
Ypleitez

Riskv4

Oct 10th, 2023
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. -- Please have at least 0.00100000 collateral
  2.  
  3. -- and set betcalc using one of the following
  4.  
  5. -- numbers, 7 loss streaks is usually the highest
  6.  
  7. -- result with 60k bets, 100k bets and over 180k bets I have
  8.  
  9. -- not yet seen a 8 loss streak.
  10.  
  11. -- 6 max losses (ludicrous) - 100.938608
  12.  
  13. -- 7 max losses (stupid) - 27.364138
  14.  
  15. -- 8 max losses (risky) - 7.3446286
  16.  
  17. -- 9 max losses (safe) - 1.9714477
  18.  
  19. -- 10 max losses (safest) - 0.5291766
  20.  
  21. -- 11 max losses (sleepy) - 0.1420417
  22.  
  23.  
  24.  
  25. betcalc = 0.1420417
  26.  
  27.  
  28. --------------------------------------dont change anything after this line
  29.  
  30. --------------------------------------execpt you know what you do
  31.  
  32.  
  33. if (betcalc < 0.01) then print("Please set betcalc then restart the script") stop() end
  34.  
  35.  
  36. function changebet()
  37.  
  38. if (balance<=100.00000000) then
  39. print ("i'm so' crying,....loserr") stop()end
  40.  
  41. if (balance>=3000.00000000) then
  42.  
  43. print ("i'm so' happy,....but i'm..The Winnerr") stop()end
  44. randhilo= math.random(1,10)
  45.  
  46. if(randhilo > 5) then
  47.  
  48. return true
  49.  
  50. else
  51.  
  52. return false
  53.  
  54. end
  55.  
  56. end
  57.  
  58.  
  59.  
  60. first = true
  61.  
  62. done = true
  63.  
  64. chance = 27.5
  65.  
  66. bethigh = changebet()
  67.  
  68. base = balance * (betcalc / 100000)
  69.  
  70. curbet = base * 3.7255
  71.  
  72. nextbet = base
  73.  
  74.  
  75.  
  76. function dobet()
  77.  
  78. base = balance * (betcalc / 100000)
  79.  
  80. if (first) then
  81.  
  82. if not(win) then
  83. chance = 50
  84.  
  85. nextbet = curbet
  86.  
  87. first = false
  88.  
  89. done = true
  90.  
  91. else
  92.  
  93. randswitch= math.random(1,10)
  94.  
  95. if (randswitch > 4) then
  96.  
  97. bethigh = changebet()
  98.  
  99. end
  100.  
  101. end
  102.  
  103. end
  104.  
  105.  
  106.  
  107.  
  108.  
  109. if (not(first) and not(done)) then
  110.  
  111. if win then
  112.  
  113. chance = 27.5
  114.  
  115. curbet = base * 3.7255
  116.  
  117. nextbet = base
  118.  
  119. first = true
  120.  
  121. done = true
  122.  
  123. randswitch= math.random(1,10)
  124.  
  125. if (randswitch > 7) then
  126.  
  127. bethigh = changebet()
  128.  
  129. end
  130.  
  131. else
  132.  
  133. curbet = curbet * 3.7255
  134.  
  135. bethigh = changebet()
  136.  
  137. nextbet = curbet
  138. chance = 72.5
  139.  
  140. end
  141.  
  142. end
  143.  
  144. done = false
  145.  
  146.  
  147. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement