Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --yourEdge = 99
- multiplier = 10
- chance = yourEdge / multiplier
- --minimalbet = 0.00000001
- --basebet = balance / 500000
- basebet = minimalbet * 1
- nextbet = basebet
- losts = 0
- stoplost = basebet * 10000
- bethigh = true
- GoOtb = false
- --lost = 0
- function dobet()
- --stopProfit(0.2)
- --lost = lost + currentprofit
- --if (lost > 0) then
- -- lost = 0
- --end
- losts = losts + currentprofit
- if (losts > 0) then
- losts = 0
- end
- if (math.abs(losts) > stoplost) then
- pause()
- end
- if (not GoOtb) then
- if (win) then
- multiplier = 10
- chance = yourEdge / multiplier
- else
- if (currentstreak%60 == 0) then
- multiplier = 5
- chance = yourEdge / multiplier
- nextbet = math.abs(losts) / (multiplier - 1) * 1.2
- else
- multiplier = multiplier + 1.1
- if (currentstreak%20 == 0) then
- multiplier = multiplier * 0.50
- nextbet = nextbet * 2.1
- end
- chance = yourEdge / multiplier
- end
- end
- if (math.abs(lost) > basebet * 1000) then
- GoOtb = true
- losts = 0
- chance = yourEdge / 2
- end
- else
- bethigh = math.random(2) == math.random(2)
- if (win) then
- if (currentstreak == 1 and otb) then
- nextbet = math.abs(lost) / ((yourEdge / chance) - 1) * 0.35
- else
- nextbet = nextbet * 0.75
- end
- else
- if (currentstreak%3 == 0) then
- nextbet = nextbet * 0.5
- else
- nextbet = nextbet * 2
- end
- if (currentstreak <= -5) then
- nextbet = basebet
- otb = true
- end
- end
- if (losts == 0) then
- nextbet = basebet
- otb = false
- bethigh = not bethigh
- end
- end
- if (lost == 0) then
- --basebet = balance / 500000
- multiplier = 10
- chance = yourEdge / multiplier
- nextbet = basebet
- bethigh = not bethigh
- GoOtb = false
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement