You are on page 1of 1

game = "limbo"

bb1 = 0.00000001
wc1 = 0.19800000
inc1 = 0.44 -- percentage

chance = wc1
nextbet = bb1

waitSecondsBetweenResetSeed = 25 -- seconds
maxLoseBetsBySeed = 42

----------------------------------------------
----------------------------------------------
betsCount = 0
lastResetTime = os.time()

function waitSeconds(seconds)
local start = os.time()
repeat until os.time() > start + seconds
end

function myResetSeedEngine()
if betsCount >= maxLoseBetsBySeed then
betsCount = 0
if ((lastResetTime + waitSecondsBetweenResetSeed) <= os.time()) then
resetseed()
sleep(2)
lastResetTime = os.time()
else
waitSeconds(waitSecondsBetweenResetSeed)
resetseed()
sleep(2)
lastResetTime = os.time()
end
end
end

function dobet()
----------------------------------------------
betsCount = betsCount + 1
myResetSeedEngine()
----------------------------------------------
if win then
if partialprofit > 0 then
nextbet=bb1
resetpartialprofit()
else
--if(nextbet > (bb1*10)) then
--nextbet = previousbet/10
--end
nextbet = bb1
end
else
nextbet = previousbet + (previousbet * (inc1 / 100))
end
end

You might also like