Advertisement
coinwalk

crazybot snowybot

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