You are on page 1of 2

chance= 49.

95
bethigh= true
div=500000
base= balance/div
nextbet= preroll
preroll= 0.00000001
losts=0
function dobet()
if !win then
losts+=1
if losts==1 then
bethigh= false
nextbet=base end
if losts==2 and currentstreak==-2 then
bethigh=false
nextbet=base*2 end
if losts==3 and currentstreak==-3 then
bethigh=false
nextbet=base*2 end
if losts==4 and currentstreak==-4 then
bethigh=false
nextbet=base*2.2 end
if losts==5 and currentstreak==-5 then
bethigh=false
nextbet=base*2.4 end
if losts==6 and currentstreak==-6 then
bethigh=false
nextbet=base*2.6 end
if losts==7 and currentstreak==-7 then
bethigh=false
nextbet=base*2.8 end
if losts==8 and currentstreak==-8 then
bethigh=false
nextbet=base*3 end
if losts==9 and currentstreak==-9 then
bethigh=false
nextbet=base*3.2 end
if losts==10 and currentstreak==-10 then
bethigh=false
nextbet=base*3.4 end
if losts==11 and currentstreak==-11 then
bethigh=false
nextbet=base*3.6 end
if losts==12 and currentstreak==-12 then
bethigh=false
nextbet=base*3.8 end
if losts==13 and currentstreak==-13 then
bethigh=false
nextbet=base*4 end
if losts==14 and currentstreak==-14 then
bethigh=false
nextbet=base*4.2 end
if losts==15 and currentstreak==-15 then
bethigh=false
nextbet=base*4.4 end
if losts==16 and currentstreak==-16 then
bethigh=false
nextbet=base*4.6 end
if losts==17 and currentstreak==-17 then
bethigh=false
nextbet=base*4.8 end
if losts==18 and currentstreak==-18 then
bethigh=false
nextbet=base*5 end
if losts>18 and currentstreak>-18 then
bethigh=false
nextbet=base*6 end
if win then
bethigh=true
nextbet=preroll end
end

You might also like