Advertisement
coinwalk

ultimate snowybot lua

Jan 12th, 2022
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. ebe = balance/350
  2. b = ebe
  3. f = true
  4. g = true
  5. oldbal = balance
  6. oldt = balance
  7. old = balance
  8. chance = 49.5
  9. target = 3369
  10. nextbet = ebe
  11. bethigh = false
  12. resetstats()
  13.  
  14. function dobet()
  15. if (balance>=(oldt+(b*7))) then
  16. nextbet = previousbet*2
  17. b = nextbet
  18. end
  19. if ((balance<=(oldbal-(b*3))) and (g==true)) then
  20. nextbet = previousbet*2
  21. b = nextbet
  22. f = false
  23. g = false
  24. oldt = balance
  25. oldbal = balance
  26. end
  27. if ((balance<=(oldbal-(b*3))) and (g==false)) then
  28. nextbet = previousbet/2
  29. b = nextbet
  30. f = false
  31. g = true
  32. oldt = balance
  33. oldbal = balance
  34. end
  35. if (balance>=(oldt+(b*10))) then
  36. nextbet = previousbet/2
  37. b = nextbet
  38. g = true
  39. oldt = balance
  40. oldbal = balance
  41. end
  42. if (balance>=(old+(ebe*10))) then
  43. nextbet = ebe
  44. b = ebe
  45. f = true
  46. g = true
  47. oldt = balance
  48. oldbal = balance
  49. old = balance
  50. end
  51. if (((balance>=old) and (f==false))) then
  52. nextbet = ebe
  53. b = ebe
  54. f = true
  55. g = true
  56. oldt = balance
  57. oldbal = balance
  58. old = balance
  59. end
  60. if (balance>=target) then
  61. stop()
  62. end
  63. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement