Advertisement
coinwalk

snowybot upgrade v11

Jun 18th, 2022
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. bob = 0.0001
  2. ian = balance
  3. tom = false
  4. sex = true
  5. four = bob
  6. have = balance
  7. bal = balance
  8. yall = (bob*3)
  9. chance = 49.5
  10. nextbet = bob
  11. bethigh = false
  12. target = 500
  13. resetstats()
  14.  
  15. function dobet()
  16. if (balance>(have+(four*6))) then
  17. nextbet = four*2
  18. four = four*2
  19. sex = false
  20. yall = (bob*3)
  21. have = balance
  22. end
  23. if ((balance<=(have-(four*3))) and (sex==false)) then
  24. nextbet = bob
  25. four = bob
  26. yall = (bob*4)
  27. sex = true
  28. have = balance
  29. end
  30. if ((balance<=(have-yall)) and (sex==true)) then
  31. nextbet = four*2
  32. four = four*2
  33. yall = (nextbet*5)
  34. tom = true
  35. sex = true
  36. have = balance
  37. end
  38. if ((balance>(ian+(bob*10))) or ((balance>=ian) and (tom==true))) then
  39. nextbet = bob
  40. four = bob
  41. tom = false
  42. sex = true
  43. yall = (bob*3)
  44. have = ian+((math.floor((balance-ian)/(bob*10)))*(bob*10))
  45. ian = ian+((math.floor((balance-ian)/(bob*10)))*(bob*10))
  46. end
  47. if (balance>=target) then
  48. stop()
  49. end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement