Advertisement
coinwalk

latest skyrocket bot

Aug 5th, 2021
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. cat = 64
  2. y = balance/cat
  3. x = balance/cat
  4. chance = 49.95
  5. bethigh = false
  6. target = 5
  7. nextbet = y
  8. elf = balance
  9. olf = balance
  10. older = balance
  11. g = true
  12. j = false
  13. resetstats()
  14.  
  15.  
  16. function dobet()
  17. if (balance>=(elf+(x*2))) then
  18. nextbet = previousbet*2
  19. x = nextbet
  20. elf = balance
  21. j = true
  22. g = false
  23. end
  24. if (balance<=(olf-(x*2))) and g==true then
  25. nextbet = previousbet*2
  26. x = nextbet
  27. olf = balance
  28. elf = balance
  29. g = false
  30. j = true
  31. end
  32. if (balance<=(olf-(x*2))) and j==true then
  33. nextbet = previousbet/2
  34. x = nextbet
  35. olf = balance
  36. elf = balance
  37. g = true
  38. j = false
  39. end
  40. if nextbet>=balance/4 then
  41. nextbet = previousbet/2
  42. x = nextbet
  43. olf = balance
  44. j = true
  45. g = false
  46. elf = balance
  47. end
  48. if nextbet<y then
  49. nextbet = y
  50. x = nextbet
  51. end
  52. if (balance>=older) then
  53. y = balance/cat
  54. nextbet = y
  55. x = y
  56. g = true
  57. j = false
  58. elf = balance
  59. olf = balance
  60. older = balance
  61. end
  62. if balance>=target or balance<nextbet then
  63. stop()
  64. end
  65. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement