Advertisement
Ypleitez

Untitled

Oct 30th, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.43 KB | None | 0 0
  1. scriptname = 'Strategy Wager and Profit created date [28/10/2023]'
  2. ---------------------------------------------------------------------
  3. mode = 3 -- set 0=profit 1=wager 3=reset mode
  4. tpreset = 20 -- set target profit for reset mode
  5. target = balance*2 -- set target profit for stop
  6. stoplose = balance*0 -- set stoplose
  7. divbal = 15 -- set divider balance
  8. minbet = 1.3 -- set minimal bet
  9. div = 3e3 -- set divider basebet
  10. prebet = 0 -- set 0 for stake/pd or minbet for other
  11. limitseed = 10000 -- set limit resetseed
  12. minch = 1 -- set min chance
  13. maxch = 98 -- set max chance
  14. ------------------------- do not touch ------------------------------
  15. initbal = balance/divbal
  16. base = balance/div
  17. nextbet = base
  18. chance = maxch
  19. roll = 0 roll1 = 0
  20. limitpro = 5 cprofit = 0
  21. limitroll = 100 rollbet = 0
  22. resetmode = false preroll = false
  23. bethigh = false burn = false
  24. alt_recov = false winch = 0 rolle = 0
  25. status = '' burnpro = 0
  26. resetpartialprofit() resetseed()
  27.  
  28. function dobet()
  29. log("--- Status \t"..status.." ")
  30. cprofit = cprofit + currentprofit
  31. if balance > target then stop() end
  32. if burn and (mode == 1) then
  33. burnpro = burnpro + currentprofit
  34. if partialprofit > 0 then resetpartialprofit() end
  35. status = 'Burning Profit on Progress...'
  36. if win then
  37. if burnpro >= 0 then
  38. chance = maxch nextbet = base burnpro = 0
  39. else
  40. nextbet = (burnpro*-1)/((99/chance)-1)
  41. end
  42. else
  43. altrecov()
  44. end
  45. if nextbet > cprofit then
  46. resetpartialprofit() burn = false cprofit = 0
  47. preroll = true nextbet = prebet mode = 3 burnpro = 0
  48. end
  49. else
  50. if preroll then
  51. status = 'Preroll ...'
  52. rollbet = rollbet + 1 rolle = 0
  53. chance = math.random(minch,maxch)
  54. nextbet = prebet
  55. if rollbet > limitroll then
  56. preroll = false rollbet = 0
  57. chance = maxch nextbet = base
  58. end
  59. if alt_recov then alt_recov = false else alt_recov = true end
  60. else
  61. if partialprofit >= 0 then
  62. status = 'Wager Run C98 on Progress...'
  63. resetpartialprofit() rolle = 0
  64. if (currentstreak == 1) then
  65. if alt_recov then alt_recov = false else alt_recov = true end
  66. bethigh = !bethigh
  67. end
  68. if chance < 10 then winch = chance end
  69. if (resetmode == false) and (mode == 3) and profit >= ((initbal*divbal)*(tpreset/100)) then resetmode = true end
  70. if resetmode then
  71. if ((initbal*divbal)*(tpreset/100)) >= profit then tpreset = profit end
  72. if (profit/(balance-profit))*100 > 20 then
  73. burn = true cprofit = profit/2 chance = maxch
  74. initbal = (balance-profit)/divbal base = profit/(div/5)
  75. nextbet = base mode = 1
  76. else
  77. initbal = profit/divbal base = profit/(div/5)
  78. end
  79. else
  80. tpreset = ((initbal*divbal)*(tpreset/100))
  81. initbal = balance/divbal base = balance/div
  82. end
  83. if chance >= 33 and chance < maxch then
  84. if previousbet > (initbal*0.2) and lastBet.nonce > limitseed then resetseed() end
  85. preroll = true nextbet = prebet
  86. else
  87. chance = math.random(maxch*100, (maxch+1)*100)/100
  88. nextbet = base roll = 0 roll1 = 0
  89. end
  90. else
  91. if alt_recov then
  92. status = 'Alternatif Recov Lose on Progress...'
  93. rolle = rolle + 1
  94. if (rolle == 1) then nextbet = (partialprofit*-1)/((99/chance)-1) end
  95. altrecov()
  96. else
  97. status = 'Recov Lose on Progress...'
  98. if win then
  99. chance = math.random(50,66) roll = 0 roll1 = 0
  100. nextbet = (partialprofit*-1)/((99/chance)-1)
  101. else
  102. if (currentstreak == -1) then
  103. bethigh = !bethigh
  104. if winch > 10 or (winch == 0) then
  105. chance = math.random(minch, 10)
  106. else
  107. chance = winch
  108. end
  109. nextbet = (partialprofit*-1)/((99/chance)-1)
  110. else
  111. if partialprofit < -initbal*0.05 and partialprofit > -initbal*0.25 then
  112. roll = roll + 1
  113. if (roll == 1) then
  114. chance = math.random(33,35) --bethigh = !bethigh
  115. nextbet = (partialprofit*-1)/((99/chance)-1)
  116. else
  117. if (roll == 3) then
  118. chance = math.random(45,66) --bethigh = !bethigh
  119. nextbet = (partialprofit*-1)/((99/chance)-1)
  120. else
  121. nextbet = previousbet*(1+(chance/50))
  122. end
  123. end
  124. nextbet = (partialprofit*-1)/((99/chance)-1)
  125. elseif partialprofit < -initbal*0.25 and partialprofit > -initbal*0.5 then
  126. roll1 = roll1 + 1
  127. if (roll1 == 1) then
  128. chance = math.random(10,20) bethigh = !bethigh
  129. nextbet = (partialprofit*-1)/((99/chance)-1)
  130. else
  131. chance = chance + math.random(10,50)/100
  132. nextbet = previousbet*(1+(chance/50))
  133. end
  134. elseif partialprofit < -initbal*0.5 then
  135. chance = math.random(100,1000)/100
  136. nextbet = (partialprofit*-1)/((99/chance)-1)
  137. alt_recov = true
  138. else
  139. chance = chance + math.random(10,100)/100
  140. nextbet = previousbet*(1+(chance/50))
  141. sbet = (partialprofit*-1)/((99/chance)-1)
  142. if nextbet < sbet then nextbet = sbet end
  143. end
  144. end
  145. end
  146. end
  147. end
  148. end
  149. end
  150. if (mode == 3) and resetmode or (mode == 1) and resetmode and partialprofit < -((initbal*divbal)*(tpreset/100)) then
  151. preroll = true resetpartialprofit() cprofit = 0
  152. initbal = balance/divbal base = balance/div
  153. chance = minch nextbet = prebet
  154. end
  155. if (preroll == false) and nextbet < minbet then nextbet = minbet end
  156. end
  157. altctwin = 0 altctlose = 0
  158. altroll1 = 0 altroll2 = 0 altroll3 = 0 altroll4 = 0
  159. function altrecov()
  160. if win then
  161. altctwin = altctwin + 1 altctlose = 0
  162. altroll1 = 0 altroll2 = 0 altroll3 = 0 altroll4 = 0
  163. if (currentstreak == 1) then bethigh =!bethigh end
  164. chance = math.random(50,60)
  165. if partialprofit >= 0 then
  166. if alt_recov then alt_recov = false else altrecov = true end
  167. if previousbet > initbal*0.1 then
  168. preroll = true nextbet = prebet chance = maxch
  169. else
  170. chance = maxch nextbet = base
  171. end
  172. resetpartialprofit()
  173. else
  174. if partialprofit < -initbal then
  175. nextbet = (partialprofit*-0.5)/((99/chance)-1)
  176. else
  177. nextbet = (partialprofit*-1)/((99/chance)-1)
  178. end
  179. end
  180. else
  181. altctlose = altctlose + 1 altctwin = 0
  182. if (currentstreak == -1) then
  183. if lastBet.roll < 50 and bethigh then bethigh = false end
  184. if lastBet.roll > 50 and (bethigh == false) then bethigh = true end
  185. if chance > 30 and partialprofit < -initbal*0.3 then
  186. if math.random(3,7) == 5 then bethigh = !bethigh end
  187. end
  188. if lastBet.roll < 1 or lastBet.roll > 99 then
  189. chance = math.random(1,10)/10
  190. else
  191. chance = math.random(2,10)
  192. end
  193. if partialprofit < -initbal then
  194. nextbet = (partialprofit*-0.5)/((99/chance)-1)
  195. else
  196. nextbet = (partialprofit*-1)/((99/chance)-1)
  197. end
  198. else
  199. if lastBet.roll < 10 or lastBet.roll > 90 then
  200. altroll1 = altroll1 + 1
  201. if lastBet.roll < 1 or lastBet.roll > 99 then
  202. chance = math.random(1,10)/10
  203. else
  204. chance = math.random(2,10)
  205. end
  206. if (altroll1 == 1) then
  207. if partialprofit < -initbal then
  208. nextbet = (partialprofit*-0.5)/((99/chance)-1)
  209. else
  210. nextbet = (partialprofit*-1)/((99/chance)-1)
  211. end
  212. else
  213. nextbet = previousbet+(previousbet*(35/100))
  214. end
  215. elseif lastBet.roll > 10 and lastBet.roll < 30 then
  216. altroll2 = altroll2 + 1
  217. chance = math.random(10,20)
  218. if (altroll2 == 1) then
  219. if partialprofit < -initbal then
  220. nextbet = (partialprofit*-0.5)/((99/chance)-1)
  221. else
  222. nextbet = (partialprofit*-1)/((99/chance)-1)
  223. end
  224. else
  225. nextbet = previousbet+(previousbet*(35/100))
  226. end
  227. elseif lastBet.roll > 30 and lastBet.roll < 50 then
  228. altroll3 = altroll3 + 1
  229. chance = math.random(20,30)
  230. if (altroll3 == 1) then
  231. if partialprofit < -initbal then
  232. nextbet = (partialprofit*-0.5)/((99/chance)-1)
  233. else
  234. nextbet = (partialprofit*-1)/((99/chance)-1)
  235. end
  236. else
  237. nextbet = previousbet+(previousbet*(35/100))
  238. end
  239. else
  240. altroll4 = altroll4 + 1
  241. chance = math.random(30,40)
  242. if (altroll4 == 1) then
  243. if partialprofit < -initbal then
  244. nextbet = (partialprofit*-0.5)/((99/chance)-1)
  245. else
  246. nextbet = (partialprofit*-1)/((99/chance)-1)
  247. end
  248. else
  249. nextbet = previousbet+(previousbet*(35/100))
  250. end
  251. end
  252. end
  253. end
  254. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement