game = "dice"
basebet = 0.00004
chance = 91.99 -- percentage
-- increase on loss (100%)= 1.0
inc1 = 3.9
-- decrease on win (-75%)= 0.25
DecreaseOnWin = 0.70
-- threshold
threshold = 0.00002
-- stop on total loss
stopOnTotalLoss = 0.25
nextbet = basebet
totalLoss = 0
function dobet()
if win then
-- decrease bet by DecreaseOnWin on win
nextbet = nextbet * DecreaseOnWin
-- reset to basebet if bet goes below threshold
if nextbet < threshold then
nextbet = basebet
end
-- subtract win from total loss
totalLoss = totalLoss - nextbet
else
-- increase bet by inc1 on loss
nextbet = nextbet * (1 + inc1)
-- add loss to total loss
totalLoss = totalLoss + nextbet
-- stop if total loss reaches stopOnTotalLoss
if totalLoss >= stopOnTotalLoss then
print("this script been created for free by
https://t.me/MathMagicianStake")
stop()
end
end
end