Advertisement
coinwalk

check the bot out yologay

Sep 27th, 2022
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 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 = balance/24
  5. base = basebet
  6. bethigh = false
  7. chance = 49.5
  8. have = 0
  9. old = 0
  10. darn = 2.5
  11. upper = 6.5
  12. target = (balance*2)
  13. downer = false
  14. nextbet = basebet
  15. resetstats()
  16.  
  17. function dobet()
  18. if (balance>(have+(base*upper))) then
  19. nextbet = base*2
  20. base = base*2
  21. darn = 4.5
  22. have = balance
  23. end
  24. if (balance<(have-(base*darn))) then
  25. nextbet = base*2
  26. base = base*2
  27. downer = true
  28. darn = 4.5
  29. upper = 4.5
  30. have = balance
  31. end
  32. if (((downer==true) and (balance>=old)) or (balance>(old+(basebet*10)))) then
  33. nextbet = basebet
  34. base = basebet
  35. nextbet = basebet
  36. upper = 6.5
  37. darn = 2.5
  38. downer = false
  39. have = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  40. old = old+((math.floor((balance-old)/(basebet*10)))*(basebet*10))
  41. end
  42. if (balance>=target) then
  43. stop()
  44. end
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement