Advertisement
coinwalk

the best snowybot ever written

Aug 2nd, 2022
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. chance = 49.5
  2. dking = balance/5000
  3. cript = dking
  4. have = balance
  5. ian = balance
  6. holly = (dking*6.9)
  7. joe = false
  8. jim = false
  9. god = (dking*2.5)
  10. nextbet = dking
  11. bethigh = false
  12. target = 5000
  13. resetstats()
  14.  
  15. function dobet()
  16. if ((balance>=(have+holly))) then
  17. have = have+(cript*10)
  18. god = (cript*12.5)
  19. holly = (cript*6.9)
  20. nextbet = cript*2
  21. cript = cript*2
  22. joe = false
  23. jim = true
  24. end
  25. if ((balance<=(have-god))) then
  26. holly = (cript*6.9)
  27. god = (cript*9.9)
  28. nextbet = cript*2
  29. cript = cript*2
  30. joe = true
  31. have = balance
  32. end
  33. if ((balance>=ian) and (joe==true) and (jim==false) and (balance<(ian+(dking*10)))) then
  34. nextbet = dking
  35. cript = dking
  36. holly = (dking*6.9)
  37. ian = ian
  38. have = ian
  39. jim = false
  40. joe = false
  41. god = (dking*2.5)
  42. end
  43. if (((balance>(ian+(dking*10))) and (balance<(ian+(holly*2)))) or ((balance>(ian+(dking*10))) and (balance>=(ian+(holly*2))))) then
  44. ian = ian+((math.floor((balance-ian)/(dking*10)))*(dking*10))
  45. have = ian
  46. nextbet = dking
  47. cript = dking
  48. holly = (dking*6.9)
  49. jim = false
  50. joe = false
  51. god = (dking*2.5)
  52. end
  53. if balance>target then
  54. stop()
  55. end
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement