chance = 33
bethigh = true
basebet = balace/2500000
nextbet = basebet
multiWin = 1.03
multiLoss = 1.18
roundprofit = balance/2500
round = 0
function dobet()
round = round + currentprofit
if (win) then
nextbet = previousbet * multiWin
else
nextbet = previousbet * multiLoss
end
if (round > roundprofit) then
round = 0
nextbet = balace/2500000
roundprofit = balance/2500
resetseed();
end
end
0 Comments