--MBAH LTC OR DOGE ---
base = (balance / 1000) * 0.0001
chance = 66
minc = 9.46
maxc = 12.36
nextbet = base
bethigh = false
multi = 1.12
multi2 = 1.14
somu1f1 = 0
somu2f1 = 1
somu1f2 = 1.74
somu2f2 = 1.62
point1 = 16
point2 = 10
f1 = true
profitf1 = 0
nx1 = 1
f1stw = 0
f1stl = 0
f1x = true
f2 = false
profitf2 = 0
nx2 = 1
f2st = 0
function dobet()
bethigh = (math.random(100) >= 50)
chance = math.random(minc*100,maxc*100)/100
if (f1) then
if win then
f1x = false
if (f1stw >= 1) or (f1stl >= 1) then
nextbet = base/10
nx1 = 1
f1stw = 0
f1x = true
else
nx1 += somu1f1
f1stw += 1
nextbet = base * (multi^nx1)
end
f1stl = 0
else
f1stw = 0
if (f1stl >= point1) then
nextbet = base/10
nx2 = nx1
f2 = true
f1stl = 0
f1stw = 0
nx1 = 1
f1 = false
else
if f1x then
nextbet = base/10
else
nx1 += somu2f1
f1stl += 1
nextbet = base * (multi^nx1)
end
resetseed()
end
end
end
if (f2) then
if win then
if (f2st >= 1) then
f1 = true
f2 = false
f1x = true
nextbet = base/10
nx2 = 1
f2st = 0
else
nx2 += somu1f2
nextbet = base * (multi2^nx2)
f2st += 1
end
else
if (f2st >= 1) and (f2st < point2) then
nx2 += somu2f2
nextbet = base * (multi2^nx2)
f2st += 1
else
nextbet = base/10
f2st = 0
end
resetseed()
end
end
nextbet = math.ceil(nextbet*10^8)/10^8
end