DiceScript1734412307554.lua
DiceScript1734412307554.lua
chance = 90
basebet = balance/7000000
chancex = {36,37,21,4,5,7,24,25}
chindex = 1
first_index = false
nextbet = basebet
wcount = 0
lcount = 0
btarget = balance + 5551.7
profitc = 0
target = balance*(0.2/100)
StopLossLimitStreakRound =balance*(1.2/100)
function dobet()
if profit >target then stop() end
if profit < ((StopLossLimitStreakRound) * -1) then
stop()
end
if win then
wcount = wcount + 1
lcount = 0
else
nextbet = previousbet*(1+(chance*0.02))
lcount = lcount + 1
end
if wcount == 2 then
chindex = math.random(1, #chancex)
chance = chancex[chindex]
bethigh = false
wcount = 0
end
if lcount == 1 then
chance = 47.5
bethigh = true
end
if lcount == 2 then
chance = 49.5
bethigh = false
end
if lcount == 3 then
chindex = math.random(1, #chancex)
chance = chancex[chindex]
bethigh = true
end
simplestats_balhi = balance
simplestats_balst = balance
simplestats_maxdrop,simplestats_profitc,simplestats_wager = 0,0,0
function fn_simplestats()
simplestats_wager =simplestats_wager + previousbet
simplestats_profitc += currentprofit
end