Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- label = "easy 9.9 winchance"
- version = "v2.2"
- yourEdge = 99
- winchance = yourEdge / 10
- minimalbet = 0.00000001
- basebet = minimalbet
- profit_checkpoint = balance
- onhardrecover = false
- bethigh = true
- chance = winchance
- nextbet = basebet
- losts = 0
- function dobet()
- losts = losts + currentprofit
- if (losts >= 0) then
- losts = 0
- end
- -------- стоп по проигрышу--------------------
- if (math.abs(losts) > basebet * 100000) then
- pause()
- end
- ----------------------------------------------
- if(win) then
- if(balance >= profit_checkpoint) then
- profit_checkpoint = balance
- nextbet = basebet
- onhardrecover = false
- chance = winchance
- else
- nextbet = previousbet * 0.5
- if (onhardrecover) then
- chance = chance + 1
- end
- chance = math.min(chance, 50)
- end
- else
- if onhardrecover then
- if(currentstreak%5 == 0) then
- nextbet = previousbet * 2
- end
- chance = chance - 1
- chance = math.max(chance, winchance)
- if (currentstreak == -30) then
- onhardrecover = true
- chance = chance * 2
- end
- else
- if(currentstreak%5 == 0) then
- nextbet = previousbet * 2
- end
- if (currentstreak%20 == 0) then
- onhardrecover = true
- nextbet = previousbet * 0.5
- end
- if (currentstreak == -50) then
- onhardrecover = true
- chance = chance * 2
- end
- end
- end
- nextbet = math.max(nextbet, basebet)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement