0% found this document useful (0 votes)
23 views1 page

SHIB1

Kk

Uploaded by

restuadiprayuda
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views1 page

SHIB1

Kk

Uploaded by

restuadiprayuda
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

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

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy