Advertisement
coinwalk

snowybot non compound

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