resetseed();
min = 1
max = 80
chance = math.random(min*100, max*100)/100
bethigh = false
basebet = balance/10000
nextbet = basebet
StopOnProfit = balance*1.5
round = 0
multi = 0
function dobet()
if profit > StopOnProfit then
stop();
end
if (win) then
nextbet = balance/10000
chance = math.random(min*100, max*100)/100
round = 0
resetseed();
else
chance = math.random(min*100, max*100)/100
round = round + previousbet
multi = 99/chance
if (multi < 2) then
nextbet = (round + round/10) / (multi - 1)
else
nextbet = (round + round/100)/ (multi - 1)
end
if (nextbet < 0.00000001) then
nextbet = 0.00000001
end
end
end
0 Comments