Advertisement
coinwalk

snowy bot

May 11th, 2021
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. cat = 100000
  2. x = balance/cat
  3. y = balance/cat
  4. k = 0
  5. chance = 49.95
  6. nextbet = x
  7. bethigh = false
  8. target = 500000
  9. old = balance
  10. bob = 14
  11. myseed = 7777
  12. olf = balance
  13. elf = balance
  14. resetstats()
  15.  
  16. function dobet()
  17. xol = math.random(1,3)
  18. if (xol==1) then
  19. myseed = math.random(7777,99999)
  20. end
  21. if (xol==2) then
  22. myseed = math.random(50000,777777)
  23. end
  24. if (xol==3) then
  25. myseed = math.random(50,9999)
  26. end
  27. seedclient = (myseed)
  28. k = k+previousbet
  29. if (k>=(x*bob)) and (balance>=(olf+(x*7))) then
  30. nextbet = previousbet*2
  31. x = nextbet
  32. k = 0
  33. olf = balance
  34. end
  35. if (k>=(x*bob)) and (balance<=(elf-(x*4))) then
  36. nextbet = previousbet*2
  37. x = nextbet
  38. k = 0
  39. elf = balance
  40. end
  41. if balance>=elf then
  42. elf = balance
  43. end
  44. if balance<=olf then
  45. olf = balance
  46. end
  47. if (balance>=old) then
  48. y = balance/cat
  49. nextbet = y
  50. x = y
  51. k = 0
  52. elf = balance
  53. olf = balance
  54. old = balance
  55. resethistory()
  56. end
  57. if balance>=target then
  58. stop()
  59. end
  60. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement