Advertisement
coinwalk

cleo

May 27th, 2021
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. cat = 6400
  2. x = balance/cat
  3. y = balance/cat
  4. k = 0
  5. chance = (math.random(4000,7000)/100)
  6. bob = (math.random(4000,7000)/100)
  7. nextbet = y
  8. bethigh = false
  9. target = 500000
  10. old = balance
  11. busted = 0
  12. f = false
  13. resetstats()
  14.  
  15. function dobet()
  16. if (not win) then
  17. busted = busted+1
  18. end
  19. if (busted>=(math.random(4,6))) and f==false then
  20. chance = (math.random(4000,7000)/100)
  21. nextbet = previousbet*2
  22. busted = 0
  23. f = true
  24. end
  25. if (balance>=old) then
  26. chance = bob
  27. f = false
  28. nextbet = y
  29. busted = 0
  30. old = balance
  31. resethistory()
  32. end
  33. if balance>=target then
  34. stop()
  35. end
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement