Advertisement
dicekode

25-12-2022 -- 05

Dec 25th, 2022
1,060
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.60 KB | None | 0 0
  1. sats    = 5e4
  2. basebet = sats/1e8
  3. iflose  = {1.32,1}
  4. chancex = {15,19,70}
  5. target  = balance*1.1
  6. nextbet = basebet
  7. chance  = 50
  8. betlose = 0
  9.  
  10. resetstats()
  11. function dobet()
  12.     if win then
  13.         betlose = 0
  14.         chance  = chancex[3]
  15.         nextbet = basebet
  16.     else
  17.         betlose += 1
  18.         if chance < chancex[2] then
  19.             chance += 1
  20.         end
  21.         if chance >= chancex[2] then
  22.             chance = chancex[1]
  23.         end
  24.         if betlose%iflose[2]==0 then
  25.             nextbet = previousbet*iflose[1]
  26.         end
  27.     end
  28.     if balance > target then stop() end
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement