Advertisement
coinwalk

snowy.txt

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