Advertisement
coinwalk

Untitled

Oct 26th, 2022
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. snow = balance/240
  2. joe = snow
  3. bethigh = false
  4. chance = 49.5
  5. have = balance
  6. old = balance
  7. pip = balance
  8. darn = 2.9
  9. upper = 6.9
  10. wict = 0
  11. sod = balance
  12. crud = (snow*6.9)
  13. rupt = (snow*10)
  14. slow = (balance/4)
  15. stip = balance
  16. downer = false
  17. nextbet = snow
  18. resetstats()
  19.  
  20. function dobet()
  21. if ((balance>(pip+(joe*upper))) and (balance<old)) then
  22. nextbet = lastBet.Amount*2
  23. joe = lastBet.Amount*2
  24. darn = 2.9
  25. upper = 4.9
  26. pip = balance
  27. end
  28. if ((balance>(pip+(joe*upper))) and (balance>=old)) then
  29. nextbet = lastBet.Amount*2
  30. joe = lastBet.Amount*2
  31. darn = 2.9
  32. upper = 4.9
  33. downer = false
  34. pip = balance
  35. end
  36. if (balance<pip) then
  37. pip = balance
  38. end
  39. if ((balance<(have-(joe*2.5))) and (wict<=1)) then
  40. nextbet = lastBet.Amount*2
  41. joe = lastBet.Amount*2
  42. darn = 4.9
  43. upper = 4.9
  44. wict = wict+1
  45. downer = false
  46. have = balance
  47. end
  48. if ((balance<(have-(joe*2.5))) and (wict>=2)) then
  49. nextbet = lastBet.Amount*2
  50. joe = lastBet.Amount*2
  51. darn = 4.9
  52. upper = 4.9
  53. wict = wict+1
  54. downer = true
  55. have = balance
  56. end
  57. if ((balance>old) and (downer==true) and (balance<(old+(crud)))) then
  58. downer = false
  59. have = old
  60. pip = old
  61. sod = old
  62. old = old
  63. darn = 2.9
  64. wict = 0
  65. upper = 6.9
  66. nextbet = snow
  67. joe = snow
  68. end
  69. if ((balance>old) and (downer==true) and (balance>=(old+(crud)))) then
  70. downer = false
  71. have = old
  72. pip = old
  73. sod = old
  74. old = old
  75. darn = 2.9
  76. upper = 6.9
  77. wict = 0
  78. nextbet = snow*2
  79. joe = snow*2
  80. end
  81. if ((balance>=(old+rupt)) and (balance<(old+((math.floor((balance-old)/(rupt)))*(rupt))+crud))) then
  82. downer = false
  83. have = old+((math.floor((balance-old)/(rupt)))*(rupt))
  84. pip = old+((math.floor((balance-old)/(rupt)))*(rupt))
  85. sod = old+((math.floor((balance-old)/(rupt)))*(rupt))
  86. old = old+((math.floor((balance-old)/(rupt)))*(rupt))
  87. darn = 2.9
  88. upper = 6.9
  89. wict = 0
  90. slow = (balance/4)
  91. nextbet = snow
  92. joe = snow
  93. end
  94. if ((balance>=(old+rupt)) and (balance>=(old+((math.floor((balance-old)/(rupt)))*(rupt))+crud))) then
  95. downer = false
  96. have = old+((math.floor((balance-old)/(rupt)))*(rupt))
  97. pip = old+((math.floor((balance-old)/(rupt)))*(rupt))
  98. sod = old+((math.floor((balance-old)/(rupt)))*(rupt))
  99. old = old+((math.floor((balance-old)/(rupt)))*(rupt))
  100. darn = 2.9
  101. upper = 6.9
  102. wict = 0
  103. slow = (balance/4)
  104. nextbet = snow*2
  105. joe = snow*2
  106. end
  107. if ((balance-nextbet)<=(sod-slow)) then
  108. downer = true
  109. nextbet = snow
  110. joe = snow
  111. sod = balance
  112. have = balance
  113. pip = balance
  114. sod = balance
  115. slow = (balance/4)
  116. end
  117. if (balance>=100) then
  118. stop()
  119. end
  120. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement