You are on page 1of 2

chance = math.

random(5,95)
base = 0.00001
nextbet = base
bethigh = false
bethigh = true
target = balance + 1000
target1 = balance - 1000
low = 0
high = 0
countwin=0
countlose=0

function dobet()
if(bets%3==0) then
bethigh=true
else
bethigh=false
end
resetseed();
print("------------------------------------ ")
print(" PROFIT :"..string.format("%.8f",profit))
print(" -----------------------------------")
if(win) then
countwin+=1
else
countlose+=1
end
if balance > target then
stop();
end
if balance < target1 then
stop();
end

chance = math.random(90, 95)


multiplier = math.random(1*100, 2*100)/100.0

if win then
nextbet = base
else
nextbet = previousbet * multiplier
end
if currentstreak <= -1 then
chance = math.random(35*100.0, 40*100.0)/100.0
nextbet = previousbet / 4.5
end
if currentstreak <= -2 then
chance = math.random(45*100.0, 48*100.0)/100.0
nextbet = previousbet*6
end
if currentstreak <= -3 then
chance = math.random(55*100.0, 60*100.0)/100.0
nextbet = previousbet*3.6
end
if currentstreak <= -4 then
chance = math.random(6*100.0, 8*100.0)/100.0
nextbet = previousbet/3.2
end
if currentstreak <= -5 then
chance = math.random(50*100.0, 52*100.0)/100.0
nextbet = previousbet*7.4
end
if currentstreak <= -6 then
chance = math.random(60*100.0, 62*100.0)/100.0
nextbet = previousbet*3.4
end
if currentstreak <= -7 then
chance = math.random(50*100.0, 53*100.0)/100.0
nextbet = previousbet*2
end
if currentstreak <= -8 then
chance = math.random(45*100.0, 48*100.0)/100.0
nextbet = previousbet*2.15
end
if currentstreak <= -9 then
chance = math.random(60*100.0, 62*100.0)/100.0
nextbet = previousbet*3.7
end
if currentstreak <= -10 then
chance = math.random(18*100.0, 22*100.0)/100.0
nextbet = previousbet*0.56
end
if currentstreak <= -11 then
chance = math.random(6*100.0, 9*100.0)/100.0
nextbet = previousbet*0.8
end
if currentstreak <= -12 then
chance = math.random(20*100.0, 24*100.0)/100.0
nextbet = previousbet*2.4
end
if currentstreak <= -13 then
chance = math.random(5*100.0, 7*100.0)/100.0
nextbet = previousbet*0.7
end
if currentstreak <= -14 then
chance = math.random(50*100.0, 53*100.0)/100.0
nextbet = previousbet*7.2
end
if currentstreak <= -15 then
chance = math.random(5*100.0, 7*100.0)/100.0
nextbet = previousbet/2.85
end
if currentstreak <= -16 then
chance = math.random(38*100.0, 40*100.0)/100.0
nextbet = previousbet*6.5
end
if currentstreak <= -17 then
chance = math.random(45*100.0, 47*100.0)/100.0
nextbet = previousbet*3.3
if currentstreak <= -18 then
chance = math.random(85, 95)
nextbet = previousbet*20
end
end
end
end

You might also like