game = "dice"
namesc = "Jackdice24"
bethigh = true
basebet = 0.00001 -- Set your desired basebet
initialChance = 5
-- Initial chance % payout
chance = initialChance
inc1 = 115 -- Percentage increase on loss
maxConsecutiveLosses = 999 -- Maximum consecutive losses before resetting seed,
some sites dont allow it, use 999
stopProfit = 1 -- Set the profit where you want to stop and reset all stats nice
function test it with small values to see it working..
-- Variables for increasing chance
betsToIncrease = 1 -- Number of bets before increasing chance
percentageIncrease = 15 -- Percentage to increase chance
betsCounter = 0
nextbet = basebet
consecutiveLosses = 0
lossCounter = 0
stopAfterWin = false
-- stop on total loss
stopOnTotalLoss = 99.0000000 -- experiemental... not working properly it needs
double the values sometimes, been updated in next versions..
totalLoss = 0
function dobet()
if betsCounter % betsToIncrease == 0 then
chance = chance * (1 + percentageIncrease / 100)
print("Increasing chance to " .. chance)
betsCounter = 0
-- Reset to initial chance if the chance is x % or more
if chance >= 22 then -- here you can use your maximum chance % payout.
print("Resetting to initial chance.")
chance = initialChance
end
end
if profit >= stopProfit then
print("Reached stop profit. Resetting all and restarting.")
resetseed()
chance = initialChance -- Reset chance to initial value
nextbet = basebet -- Reset nextbet to basebet
end
if not win then
nextbet = previousbet*1.3
consecutiveLosses = consecutiveLosses + 1 -- Increment the consecutive losses
counter
if consecutiveLosses >= maxConsecutiveLosses then
resetseed() -- Reset the seed after maxConsecutiveLosses
print("Resetting seed after " .. maxConsecutiveLosses .. " consecutive
losses.")
consecutiveLosses = 0 -- Reset the consecutive losses counter
end
lossCounter = lossCounter + 1
if lossCounter >= 15 then -- set where you want to stop, if loss 15 times will
wait for next win to stop :)
print("Reached x consecutive losses. Waiting for the next win to stop.")
stopAfterWin = false
end
totalLoss = totalLoss + nextbet
-- stop if total loss reaches stopOnTotalLoss
if totalLoss >= stopOnTotalLoss then
print("Stopping script due to reaching stop on total loss.")
stop()
end
else
nextbet = basebet -- Reset to basebet on win
consecutiveLosses = 0 -- Reset the consecutive losses counter on win
if stopAfterWin then
print("This Script been created by https://t.me/MathMagicianStake")
stop()
end
lossCounter = 0
stopAfterWin = false
totalLoss = totalLoss - nextbet
end
betsCounter = betsCounter + 1
end