You are on page 1of 2

chance = 41.

25
base = 0.01
nextbet = base
bethigh = false
p=0
l=0
chenhlech = 0
wincount=0
losecount=0
a=0
b=0
c=0
d=2
i = balance*0.98
k = 2100
roll=0
multi = 1.86
target = balance*1.1 + 2

function dobet()
roll+=1
chenhlech = p-l

if balance > 1500 then stop() end


if wincount==16 then
wincount=0
resetseed()
end
if currentprofit > 0 then
p+= currentprofit
else
l-= currentprofit
end
if p>l then
a=0
b=0
c=0
d=1.568
base = balance/75000
chance = math.random(40*100,50*100)/100
multi = 1.88
wincount+=1
bethigh=!bethigh
p=0
l=0
nextbet = base
else
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 !win then
nextbet = previousbet*multi
losecount+=1
else
nextbet = base
losecount = 0
end
if losecount == 5 then
chance=math.random(50*100,55*100)/100
multi+=c
base*=d
d+=0.15
nextbet = base
losecount = 0
a+=1
end
end

print(" ")
print("target: "..target)
print("current profit: "..chenhlech)
print("Base's multi: "..d)
print("martigangle's multi : "..multi)
print(" ")
end
end

You might also like