Advertisement
coinwalk

$1600

May 1st, 2021
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. cat = 25000
  2. mybet = balance/cat
  3. mybets = balance/cat
  4. lol = 0
  5. chance = 49.95
  6. nextbet = mybet
  7. bethigh = false
  8. target = 10000
  9. oldbalance = 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. lol = lol+previousbet
  26. if (lol>=(mybet*32)) then
  27. nextbet = previousbet*2
  28. mybet = nextbet
  29. lol = 0
  30. else
  31. nextbet = previousbet
  32. end
  33. if balance>=oldbalance then
  34. mybets = balance/cat
  35. nextbet = mybets
  36. mybet = mybets
  37. lol = 0
  38. oldbalance = balance
  39. end
  40. if balance>=target then
  41. stop()
  42. end
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement