Advertisement
dicekode

02-01-2023 -- 01

Feb 1st, 2023
986
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.81 KB | None | 0 0
  1. basebet   = balance * 1e-5
  2. target    = balance * 1.5
  3. ctlose    = 0
  4. pausewin  = false
  5. breaklose = 40  
  6. bethigh   = true
  7. chance    = 66
  8. nextbet   = basebet
  9.  
  10. resetseed()
  11. resetstats()
  12. resetchart()
  13.  
  14. function dobet()
  15.     if bets%250==0 then resetseed() end
  16.     if balance > target then stop() end
  17.     if win then
  18.         if pausewin then
  19.             pause()
  20.             breaklose = breaklose + 10
  21.             pausewin  = false  
  22.         end
  23.         ctlose  = 0
  24.         chance  = 66
  25.         nextbet = basebet
  26.     else
  27.         ctlose += 1
  28.         nextbet = previousbet * 1.12
  29.         bethigh = not bethigh
  30.         chance  = chance - (chance * (25/100))
  31.         if chance < 6 then
  32.             chance = 6
  33.         end
  34.     end
  35.     if ctlose > breaklose then
  36.         pausewin = true
  37.     end
  38. end
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement