Advertisement
coinwalk

snowybot 3.14

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