Advertisement
dicekode

22-01-2023 -- 01

Jan 21st, 2023
1,267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.12 KB | None | 0 0
  1. chance         = 80.2
  2. basebet        = balance * 1e-8
  3. addToBetAmount = balance * 1e-6
  4. maxwin         = balance * 1e-2
  5. targetProfit   = balance * 1
  6. tempBets       = 0
  7. tempLosses     = 0
  8. nextbet        = basebet
  9. chance         = 49.95
  10.  
  11. resetstats()
  12. --resetchart()
  13. --resetseed()
  14.  
  15. function dobet()
  16.    
  17.     if win then
  18.         nextbet = nextbet - (nextbet * (20 / 100))
  19.         chance  = 38
  20.         if currentstreak >= 2 then  
  21.             nextbet = basebet
  22.         end
  23.     else
  24.         nextbet = nextbet + (nextbet * (35/100))
  25.         if currentstreak <= -6 then
  26.             nextbet = nextbet + addToBetAmount
  27.         end
  28.     end
  29.  
  30.     if losses - tempLosses == 10 then
  31.         chance     = 22
  32.         tempLosses = losses
  33.     end
  34.  
  35.     if bets - tempBets == 100 then
  36.         bethigh  = not bethigh
  37.         tempBets = bets
  38.     end
  39.  
  40.     if balance > targetProfit then stop() end
  41.    
  42.     partialprofit = partialprofit + currentprofit
  43.     if(partialprofit > 0) then
  44.         if currentprofit > maxwin then
  45.             nextbet = basebet
  46.         end
  47.         partialprofit = 0
  48.     end
  49. end
  50. partialprofit = 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement