Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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
- arrchance1 = {48,47,45,37,31,27,27,27,21,21,21,21,17,17,17,17,17,17,13,13,13,13,13,13,11}
- arrchance2 = {49,49,48,41,37,31,31,31,27,27,27,27,19,19,19,19,19,19,17,17,17,17,17,17,13}
- function dobet()
- losts = losts + currentprofit
- if (losts >= 0) then
- losts = 0
- end
- if (math.abs(losts) > basebet * 10000) then
- pause()
- end
- if (chance > 31) then
- bethigh = math.random(2) == math.random(2)
- end
- if win then
- chance = math.random(85,91)
- basebet = minimalbet --balance/4000000
- nextbet = basebet
- mnz = 1.01
- losecount = 0
- else
- mnz = mnz + 0.01
- losecount += 1
- end
- if (losecount > 0) then
- chance = math.random(arrchance1[losecount],arrchance2[losecount])
- if (losecount > 25) then
- chance = math.random(arrchance1[25],arrchance2[25])
- end
- nextbet = nextbet * ((((yourEdge / (yourEdge - chance)) - 1) * mnz) + 1)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement