Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- label = "win85-91%los49-11% Yurich v.1.03"
- version = "v1.03"
- author = "Yurich"
- --yourEdge = 99
- --minimalbet = 0.00000001
- chance = math.random(85,91)
- basebet = minimalbet --balance/4000000
- nextbet = basebet
- losecount = 0
- bethigh = false
- losts = 0
- mnz = 1.01
- xl = 10
- los = false
- lst = 0
- betsn = 0
- arrchance1 = {48,47,45,37,31,27,27,27,21,21,21,21,17,17,17,17,17,17}
- arrchance2 = {49,49,48,41,37,31,31,31,27,27,27,27,19,19,19,19,19,19}
- function dobet()
- clearConsole()
- betsn = betsn + 1
- losts = losts + currentprofit
- if (losts >= 0) then
- losts = 0
- end
- if (math.abs(losts) > basebet * 100000) then
- pause()
- end
- if (chance > 27) then
- bethigh = math.random(2) == math.random(2)
- end
- if win then
- if (not los) then
- lst = math.abs(losts)
- los = true
- end
- chance = math.random(85,91)
- basebet = minimalbet --balance/4000000
- nextbet = math.abs(losts) / xl
- mnz = 1.01
- losecount = 0
- if (lst > math.abs(losts)) then
- xl = xl - 1
- xl = math.max(xl, 1)
- else
- xl = xl + 1
- end
- else
- mnz = mnz + 0.01
- losecount = losecount + 1
- end
- if (losecount > 0) then
- if (losecount > 18) then
- chance = math.random(arrchance1[18],arrchance2[18])
- nextbet = minimalbet
- else
- chance = math.random(arrchance1[losecount],arrchance2[losecount])
- nextbet = nextbet * ((((yourEdge / (yourEdge - chance)) - 1) * mnz) + 1)
- end
- end
- if (losts == 0) then
- nextbet = basebet
- xl = 10
- los = false
- lst = 0
- if (betsn > 500) then
- betsn = 0
- changedServerSeed("")
- end
- end
- nextbet = math.max(nextbet,minimalbet)
- print(xl)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement