Advertisement
coinwalk

trail

Oct 15th, 2022
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. --so crazy you'll win
  2. --made by James William Snow
  3. --MEGA SNOWY BOT WITH CRAZY BOT TECHNOLOGY
  4. basebet = 0.0001
  5. base = basebet
  6. cry = basebet*9.9
  7. bob = basebet*9.9
  8. bethigh = false
  9. chance = 49.5
  10. have = balance
  11. old = balance
  12. pip = balance
  13. darn = 2.9
  14. upper = 6.9
  15. target = 0.2
  16. downer = false
  17. look = false
  18. poop = balance
  19. sod = balance
  20. good = balance
  21. beest = 0
  22. beed = 0
  23. nextbet = basebet
  24. resetstats()
  25.  
  26. function dobet()
  27. beed = beed+1
  28. if (beed==1) then
  29. basebet = lastBet.Amount
  30. base = basebet
  31. cry = basebet*9.9
  32. bob = basebet*9.9
  33. end
  34. if balance<poop then
  35. poop = balance
  36. print('----------------------------------------------')
  37. print('lowestbal')
  38. print(poop)
  39. print('----------------------------------------------')
  40. else
  41. print('----------------------------------------------')
  42. print('lowestbal')
  43. print(poop)
  44. print('----------------------------------------------')
  45. end
  46. if (balance>good) then
  47. good = balance
  48. print('----------------------------------------------')
  49. print('bigestbal')
  50. print(good)
  51. print('----------------------------------------------')
  52. else
  53. print('----------------------------------------------')
  54. print('bigestbal')
  55. print(good)
  56. print('----------------------------------------------')
  57. end
  58. if (lastBet.amount>beest) then
  59. beest = lastBet.Amount
  60. print('----------------------------------------------')
  61. print('bigestbet')
  62. print(beest)
  63. print('----------------------------------------------')
  64.  
  65. else
  66. print('----------------------------------------------')
  67. print('bigestbet')
  68. print(beest)
  69. print('----------------------------------------------')
  70.  
  71. end
  72. if (balance>(have+(base*upper))) then
  73. nextbet = lastBet.Amount*2
  74. base = nextbet
  75. downer = false
  76. look = true
  77. darn = 4.9
  78. upper = 4.9
  79. have = balance
  80. end
  81. if ((balance<(have-(base*darn))) and (look==false)) then
  82. nextbet = lastBet.Amount*2
  83. base = nextbet
  84. downer = true
  85. darn = 4.9
  86. upper = 4.9
  87. have = balance
  88. end
  89. if ((balance<(have-(base*darn))) and (look==true)) then
  90. nextbet = lastBet.Amount*2
  91. base = nextbet
  92. downer = false
  93. darn = 4.9
  94. upper = 4.9
  95. have = balance
  96. end
  97. if (((balance>=old) and (downer==true) and (balance<(old+(basebet*7)))) or (balance>(old+(basebet*10))) and (balance<(old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))+(basebet*7)))) then
  98. nextbet = basebet
  99. base = basebet
  100. upper = 6.9
  101. darn = 2.9
  102. downer = false
  103. look = false
  104. have = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  105. old = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  106. end
  107. if ((balance-nextbet)<=(old-cry)) then
  108. nextbet = basebet
  109. base = basebet
  110. upper = 6.9
  111. darn = 2.9
  112. downer = false
  113. look = false
  114. have = old-((math.ceil((old-balance)/(basebet*10)))*(basebet*10))
  115. have = old-((math.ceil((old-balance)/(basebet*10)))*(basebet*10))
  116. end
  117. if (balance>=target) then
  118. stop()
  119. end
  120. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement