Advertisement
dicekode

23-01-2023 -- 01

Jan 22nd, 2023
1,310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. basebet = 1e-6
  2. nextbet = basebet
  3. chance  = 99/24.75
  4. target  = balance + 25
  5. stopwin = false
  6.  
  7. function dobet()
  8.  
  9.     if win then
  10.     if stopwin then stop() end
  11.         nextbet = basebet
  12.         chance  = 3
  13.     else
  14.         nextbet = nextbet + (nextbet * (50/100))
  15.         chance  = chance + (chance * (5/100))
  16.     end
  17.     bethigh = not bethigh
  18.     if balance > target then
  19.     target = balance + 25
  20.     sleep(3)
  21.     resetseed()
  22.     resetseed()
  23.     resetseed()
  24.   end
  25.   if balance > 3500 then stop() end
  26.   if currentstreak < -45 then stopwin = true end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement