Advertisement
coinwalk

cleo+

May 27th, 2021
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 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. busted = 0
  22. f = true
  23. else
  24. nextbet = previousbet*1.018
  25. end
  26. if (balance>=old) then
  27. chance = bob
  28. f = false
  29. nextbet = y
  30. busted = 0
  31. old = balance
  32. resethistory()
  33. end
  34. if balance>=target then
  35. stop()
  36. end
  37. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement