resetseed();
min = 10
max = 75
min2 = 35.5
max2 = 60.6
min3 = 2
max3 = 7
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
bethigh = !bethigh
if currentstreak%3==0 and win then
resetseed();
chance = math.random(min3*100, max3*100)/100
end
else
chance = math.random(min2*100, max2*100)/100
if currentstreak%3==0 and lose then
chance = math.random(min3*100, max3*100)/100
end
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