chance = 90
bethigh = false
basebet = balance/100000000
nextbet = basebet
roundprofit = balance/10000
round = 0
function dobet()
round = round + currentprofit
if (win) then
nextbet = previousbet*1.15
else
nextbet = previousbet*1.85
end
if (round > roundprofit) then
round = 0
nextbet = basebet
resetseed()
end
end
0 Comments