Advertisement
coinwalk

ultimate snowybot lua part 2

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