Advertisement
coinwalk

snowy.txt

Jul 3rd, 2023
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.83 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. 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))) and (balance>(oldbalancetree-(tenbase*3)))) then
  27. floatingbasebet = floatingbasebet*2
  28. under = 4.9
  29. over = 4.9
  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. fullsteam = true
  38. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  39. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  40. end
  41. if ((balance<=(oldbalancetree-(tenbase*3))) and (balance>(((math.floor(balance/tenbase))*tenbase)+seven))) then
  42. floatingbasebet = basebet*2
  43. under = 4.9
  44. over = 4.9
  45. wowz = true
  46. fullsteam = true
  47. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  48. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  49. end
  50. if ((balance<oldbalancetwo) and (balance>=(oldbalancetree+(tenbase*3))) and (fullsteam==false) and (wowz==true) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  51. floatingbasebet = basebet
  52. under = 2.9
  53. over = 6.9
  54. wowz = true
  55. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  56. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  57. end
  58. if ((balance<oldbalancetwo) and (balance>=(oldbalancetree+(tenbase*6))) and (fullsteam==true) and (wowz==true) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  59. floatingbasebet = basebet
  60. under = 2.9
  61. over = 6.9
  62. wowz = true
  63. fullsteam = false
  64. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  65. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  66. end
  67. if ((balance>=(oldbalancetwo+tenbase)) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  68. floatingbasebet = basebet
  69. under = 2.9
  70. over = 6.9
  71. wowz = false
  72. fullsteam = false
  73. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  74. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  75. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  76. end
  77. if ((balance>=(oldbalancetwo+tenbase)) and (balance>(((math.floor(balance/tenbase))*tenbase)+seven))) then
  78. floatingbasebet = basebet*2
  79. under = 4.9
  80. over = 4.9
  81. wowz = false
  82. fullsteam = false
  83. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  84. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  85. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  86. end
  87. if ((balance>=oldbalancetwo) and (wowz==true) and (balance<(((math.floor(balance/tenbase))*tenbase)+seven))) then
  88. floatingbasebet = basebet
  89. under = 2.9
  90. over = 6.9
  91. wowz = false
  92. fullsteam = false
  93. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  94. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  95. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  96. end
  97. if ((balance>=oldbalancetwo) and (wowz==true) and (balance>(((math.floor(balance/tenbase))*tenbase)+seven))) then
  98. floatingbasebet = basebet*2
  99. under = 4.9
  100. over = 4.9
  101. wowz = false
  102. fullsteam = false
  103. oldbalancetree = ((math.floor(balance/tenbase))*tenbase)
  104. oldbalanceone = ((math.floor(balance/tenbase))*tenbase)
  105. oldbalancetwo = ((math.floor(balance/tenbase))*tenbase)
  106. end
  107. nextbet = floatingbasebet
  108. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement