Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

basebet = 0.

00000500
nextbet = basebet
roundprofit = 0
chance = 49.5
minbal=balance-0.0300000
maxbal=balance+0.01500000

function dobet()

roundprofit += currentprofit
resetseed()
nextbet=basebet
if (win) then

if (roundprofit < 0) then


nextbet = previousbet + basebet
print ("WIN")
print(nextbet)
else
nextbet = basebet
print ("WIN")
print(nextbet)
end
if balance<minbal then
stop()
end
if balance>maxbal then
stop()
end
if roundprofit > 0 then roundprofit = 0 end
end
if (!win) then
nextbet = previousbet
print ("LOSE")
print(nextbet)
end
end
if balance<minbal then
stop()
end
if balance>maxbal then
stop()
end
end
end

You might also like