Advertisement
coinwalk

snowybot for nines bot

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