Advertisement
dicekode

WB-0004

Oct 25th, 2022 (edited)
1,077
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.85 KB | None | 0 0
  1. is_limbo = true
  2. base     = balance / 1e8
  3. bethigh  = false  
  4. po       = 25  
  5. target   = 5
  6. marti    = 1.1256
  7. stopwin  = false
  8. nextbet  = base  
  9. chance   = 99/po  
  10.  
  11. ls = 0  
  12.  
  13. resetstats()
  14. function dobet()  
  15.     if balance > target then stop() end  
  16.      
  17.     if win then  
  18.         if stopwin then stop() end
  19.         nextbet = base  
  20.         ls      = 0  
  21.         po      = 25  
  22.     else  
  23.         ls      = ls + 1  
  24.         po      = po * ((100 - 1.5)/100)  
  25.         nextbet = previousbet * marti  
  26.          
  27.         if ls == 25 then  
  28.             po = po * 1.5  
  29.         end  
  30.          
  31.         if ls == 45 then  
  32.             po = po * 1.45  
  33.         end  
  34.          
  35.         if ls == 55 then  
  36.             po = po * 1.55  
  37.         end  
  38.     end  
  39.     if ls > 130 then stopwin = true end
  40.      
  41.     chance = 99/po  
  42. end
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement