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

chance = 35

base = 1.000000 --<<<<-set basebet


nextbet = base
losecount = 0
target = balance + balance/2
sr = 0

function dobet()

if balance > target then stop() end

if sr >= 5 then
resetseed()
sr = 0
print "reset seed"
end

if win then
nextbet = base
chance = 1
losecount = 0
sr = 0
else
bethigh = !bethigh
sr+=1
nextbet = previousbet* (110/(99-chance))
losecount+=1
print " "
print "------------------------------------"
print (balance)
print "------------------------------------"
end
if (win) then
nextbet = 1
chance = chance-1
else
nextbet = previousbet * (110/(99-chance))
chance = chance+1
end
if chance <= 20 then chance = 20
end

end
end

You might also like