hello,
i would add a variable that counts the wins.
and then reset when it reaches 200, and set to 0 again.
like this:
chance = 90
bethigh = true
basebet = balance/25000
nextbet = basebet
wincount = 0
function dobet()
if (win) then
wincount = wincount +1
if wincount > 199 then
resetseed()
resetstats()
wincount = 0
end
print("This is fun")
chance = 90
nextbet = balance/25000
else
print("Okay. We need more wins")
chance = 85
nextbet = previousbet * 7
end
end
end