Advertisement
dicekode

WB-0007

Nov 11th, 2022
1,122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 KB | None | 0 0
  1. basediv = 1e7
  2. minbet  = 0.00000001
  3. basebet = balance / basediv
  4. multi   = (1/3)+1
  5. ct_lose = 0
  6. mt_incr = 0
  7. fn_strk = 0
  8. profitc = 0
  9. nextbet = basebet
  10. chance  = 99/4
  11. boost   = 0
  12.  
  13. resetstats()
  14. function dobet()
  15.     if bets%300==0 then resetseed() end
  16.     profitc = profitc + currentprofit
  17.     if profitc >= 0 then
  18.         profitc = 0
  19.         fn_strk = 0
  20.     end
  21.     if win then
  22.         ct_lose = 0
  23.         mt_incr = 0
  24.         nextbet = basebet
  25.         boost   = 0
  26.     else
  27.         ct_lose = ct_lose + 1
  28.         mt_incr = mt_incr + 1
  29.         iflose  = (multi + (mt_incr / 100))
  30.         fn_strk = math.log((balance/basebet)*(iflose-1)+1)/math.log(iflose)
  31.  
  32.         if fn_strk > 40 then
  33.             nextbet = previousbet * iflose
  34.         else
  35.             if ct_lose%3==0 then
  36.                 boost += 1
  37.                 nextbet = math.abs(profitc)/(23-boost)
  38.             end
  39.         end
  40.     end
  41.     chance = 99/24
  42.     print(fn_strk)
  43.     if nextbet < minbet then nextbet = minbet end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement