Advertisement
coinwalk

rocket bot

Aug 5th, 2021
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 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 = false
  22. g = true
  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 and shit==true then
  33. nextbet = previousbet/2
  34. x = nextbet
  35. olf = balance
  36. elf = balance
  37. g = true
  38. j = false
  39. shit = false
  40. end
  41. if (balance<=(olf-(x*2))) and shit==false then
  42. nextbet = previousbet*2
  43. x = nextbet
  44. olf = balance
  45. elf = balance
  46. end
  47. if nextbet>=balance/4 then
  48. nextbet = previousbet/2
  49. x = nextbet
  50. olf = balance
  51. j = true
  52. g = false
  53. elf = balance
  54. end
  55. if nextbet<y then
  56. nextbet = y
  57. x = nextbet
  58. end
  59. if (balance>=older) then
  60. y = balance/cat
  61. nextbet = y
  62. x = y
  63. shit = true
  64. g = true
  65. j = false
  66. elf = balance
  67. olf = balance
  68. older = balance
  69. end
  70. if balance>=target or balance<nextbet then
  71. stop()
  72. end
  73. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement