Advertisement
coinwalk

lol

May 7th, 2021
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. cat = 50000
  2. x = balance/cat
  3. y = balance/cat
  4. k = 0
  5. chance = 49.95
  6. nextbet = x
  7. bethigh = true
  8. target = 6000
  9. old = balance
  10. bob = math.random(4,32)
  11. myseed = 7777
  12. resetstats()
  13.  
  14. function dobet()
  15. xol = math.random(1,3)
  16. if (xol==1) then
  17. myseed = math.random(7777,9999)
  18. end
  19. if (xol==2) then
  20. myseed = math.random(50000,77777)
  21. end
  22. if (xol==3) then
  23. myseed = math.random(50,99)
  24. end
  25. seedclient = (myseed)
  26. k = k+previousbet
  27. bob = math.random(14,32)
  28. if (k>=(x*bob)) then
  29. nextbet = previousbet*2
  30. x = nextbet
  31. k = 0
  32. end
  33. if balance>=old then
  34. y = balance/cat
  35. nextbet = y
  36. x = y
  37. k = 0
  38. old = balance
  39. resethistory()
  40. end
  41. if balance>=target then
  42. stop()
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement