SHIB1
SHIB1
basebet = 0.00004
chance = 91.99 -- percentage
-- threshold
threshold = 0.00002
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