Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- label = "rebuild 9.9 Yurich v.2.04"
- version = "v2.04"
- author = "Yurich" --rebuild
- yourEdge = 99
- winchance = 9.9
- basebet = 0.00000001--0.00000001
- 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 * 10000) then
- pause()
- end
- if(win) then
- if(balance >= profit_checkpoint) then
- profit_checkpoint = balance
- nextbet = basebet
- onhardrecover = false
- chance = winchance
- else
- nextbet = math.abs(losts)/ ((yourEdge/chance)-1) * 0.5
- if (onhardrecover) then
- chance = chance + 1
- end
- chance = math.min(chance, 50)
- end
- else
- if (onhardrecover) then
- if (math.abs(currentstreak)%15 == 0) then
- chance = chance * 2
- else
- chance = chance - 1
- chance = math.max(chance,winchance)
- end
- nextbet = math.abs(losts)/ ((yourEdge/chance)-1) * 1.2
- else
- if(math.abs(currentstreak)%5 == 0) then
- nextbet = previousbet * 2
- end
- if (math.abs(currentstreak)%16 == 0) then
- nextbet = previousbet * 0.75
- end
- if (math.abs(currentstreak) == 26) then
- onhardrecover = true
- chance = chance * 3
- end
- end
- end
- end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement