You are on page 1of 1

resetstats ()

balance = 1000
basebet = 0.10
nextbet = 0
chance = 98

function dobet ()

if win then
nextbet = basebet
chance = chance * 0.5
end

if(chance < 0.02) then


chance = 0.10
end

if((chance<=0.15 and profit>0) or profit>5) then


balance = balance + profit
chance = 98
nextbet = basebet
resetstats()
end

end

You might also like