Advertisement
coinwalk

1900dollars

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