-- SC KENANGAN TERINDAH 2020--
base = 0.005
nextbet = base
bethigh = false
p = 0
l = 0
wincount = 0
losecount = 0
a = 0
target = balance+1000
roll = 1
po = 1
multi = 1.1
chance = 95
roundprofit = 0
sessionprofit = 1-- profit session
r = math.random(1,10)-- take a break after profit session
function dobet()
roll+=1
p+= currentprofit
roundprofit+=currentprofit
if roundprofit > sessionprofit then
roundprofit = 0
r = math.random(1,10)
function sleep(n)
local t = os.clock()
while os.clock() - t <= n do
-- nothing
end
end
sleep(r)
end
if wincount == 68 then
nextbet = base
resetseed()
end
if currentprofit > 0 then
nextbet = base
p = 0
l = 0
a = 0
losecount = 0
else
l-= currentprofit
end
if win then
nextbet = base
chance = (math.random() * (49.500 - 95.000) + 95.000)
wincount+=1
a = 0
bethigh = !bethigh
else
a = math.random(1,23)
nextbet = l/po
if a == 1 then
chance = (math.random() * (50.000 - 49.501) + 49.500)
po = 1
nextbet = (l+base)/po
end
if a == 2 then
chance = (math.random() * (50.250 - 49.751) + 49.750)
po = 0.98
nextbet = (l+base)/po
end
if a == 3 then
chance = (math.random() * (50.500 - 50.001) + 50.000)
po = 0.97
nextbet = (l+base)/po
end
if a == 4 then
chance = (math.random() * (50.750 - 50.251) + 50.250)
po = 0.96
nextbet = (l+base)/po
end
if a == 5 then
chance = (math.random() * (51.000 - 50.501) + 50.500)
po = 0.955
nextbet = (l+base)/po
end
if a == 6 then
chance = (math.random() * (51.250 - 50.751) + 51.750)
po = 0.945
nextbet = (l+base)/po
end
if a == 7 then
chance = (math.random() * (51.500 - 51.001) + 51.000)
po = 0.94
nextbet = (l+base)/po
end
if a == 8 then
chance = (math.random() * (51.750 - 51.251) + 51.250)
po = 0.935
nextbet = (l+base)/po
end
if a == 9 then
chance = (math.random() * (52.000 - 51.501) + 51.500)
po = 0.93
nextbet = (l+base)/po
end
if a == 10 then
chance = (math.random() * (52.250 - 51.751) + 51.750)
po = 0.925
nextbet = (l+base)/po
end
if a == 11 then
chance = (math.random() * (52.500 - 52.001) + 52.000)
po = 0.92
nextbet = (l+base)/po
end
if a == 12 then
chance = (math.random() * (52.750 - 52.251) + 52.250)
po = 0.89
nextbet = (l+base)/po
end
if a == 13 then
chance = (math.random() * (53.000 - 52.501) + 52.500)
po = 0.885
nextbet = (l+base)/po
end
if a == 14 then
chance = (math.random() * (53.250 - 52.751) + 52.750)
po = 0.88
nextbet = (l+base)/po
end
if a == 15 then
chance = (math.random() * (53.500 - 53.001) + 53.000)
po = 0.865
nextbet = (l+base)/po
end
if a == 16 then
chance = (math.random() * (53.750 - 53.251) + 53.250)
po = 0.855
nextbet = (l+base)/po
end
if a == 17 then
chance = (math.random() * (54.000 - 53.501) + 53.500)
po = 0.85
nextbet = (l+base)/po
end
if a == 18 then
chance = (math.random() * (54.250 - 53.751) + 53.750)
po = 0.83
nextbet = (l+base)/po
end
if a == 19 then
chance = (math.random() * (54.500 - 54.001) + 54.000)
po = 0.82
nextbet = (l+base)/po
end
if a == 20 then
chance = (math.random() * (54.750 - 54.251) + 54.250)
po = 0.81
nextbet = (l+base)/po
end
if a == 21 then
chance = (math.random() * (55.000 - 54.501) + 54.500)
po = 0.8
nextbet = (l+base)/po
end
if a == 22 then
chance = (math.random() * (55.250 - 54.751) + 54.750)
po = 0.795
nextbet = (l+base)/po
end
if a == 23 then
chance = (math.random() * (55.500 - 55.001) + 55.000)
po = 0.790
nextbet = (l+base)/po
end
losecount+=1
if a>23 then a=1 end
end
if profit > 100 then --reset setelah tercapai--
resetseed()
resetstats()
end
if balance>target then stop() end
bethigh = math.random(1,5) > 2.5
end
end