Advertisement
coinwalk

snowzybot lua

Jul 3rd, 2023
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. basebet = 0.00001
  2. balance = balance
  3. floatingbasebet = basebet
  4. target = 180
  5. tenbase = (basebet*10)
  6. seven = (basebet*6.9)
  7. under = 2.9
  8. over = 6.9
  9. wowz = false
  10. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  11. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  12. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  13. chance = 49.5
  14. nextbet = basebet
  15.  
  16.  
  17.  
  18. function dobet()
  19. if (balance>(oldbalanceone+(floatingbasebet*over))) then
  20. floatingbasebet = floatingbasebet*2
  21. under = 4.9
  22. over = 4.9
  23. oldbalanceone = balance
  24. end
  25. if ((balance<(oldbalanceone-(floatingbasebet*under))) and (balance>(oldbalancetree-(tenbase*3)))) then
  26. floatingbasebet = floatingbasebet*2
  27. under = 4.9
  28. over = 4.9
  29. wowz = true
  30. oldbalanceone = balance
  31. end
  32. if ((balance<=(oldbalancetree-(tenbase*3))) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  33. floatingbasebet = basebet
  34. under = 2.9
  35. over = 6.9
  36. wowz = true
  37. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  38. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  39. end
  40. if ((balance<=(oldbalancetree-(tenbase*3))) and (balance>(((math.floor(balance/tenbase))*tenbase)+seven))) then
  41. floatingbasebet = basebet*2
  42. under = 4.9
  43. over = 4.9
  44. wowz = true
  45. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  46. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  47. end
  48. if ((balance<oldbalancetwo) and (balance>=(oldbalancetree+(tenbase*3))) and (wowz==true) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  49. floatingbasebet = basebet
  50. under = 2.9
  51. over = 6.9
  52. wowz = true
  53. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  54. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  55. end
  56. if ((balance>=(oldbalancetwo+tenbase)) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  57. floatingbasebet = basebet
  58. under = 2.9
  59. over = 6.9
  60. wowz = false
  61. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  62. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  63. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  64. end
  65. if ((balance>=(oldbalancetwo+tenbase)) and (balance>(((math.floor(balance/tenbase))*tenbase)+seven))) then
  66. floatingbasebet = basebet*2
  67. under = 4.9
  68. over = 4.9
  69. wowz = false
  70. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  71. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  72. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  73. end
  74. if ((balance>=oldbalancetwo) and (wowz==true) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  75. floatingbasebet = basebet
  76. under = 2.9
  77. over = 6.9
  78. wowz = false
  79. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  80. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  81. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  82. end
  83. if ((balance>=oldbalancetwo) and (wowz==true) and (balance>(((math.floor(balance/tenbase))*tenbase)+seven))) then
  84. floatingbasebet = basebet*2
  85. under = 4.9
  86. over = 4.9
  87. wowz = false
  88. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  89. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  90. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  91. end
  92. nextbet = floatingbasebet
  93. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement