You are on page 1of 2

chance = 45.

2381 -- % Chance to Win


basebet = 0.00000001 -- Prebet Value
target = 100.00050000 -- Adjust your Target Profit here
base = 0.00000050 -- BaseBet after prebet losses
prebet = 5 -- Prebets before the Main betting
targetbal = balance + target
HiLoOnWin = true -- True if random High or Low bets
initbalance = balance
change = 1
mult = 2.1 -- Multiplier after a loss
loststreak = 0
hiloss = 0
counter = 0
nextbet = basebet
wincount = 0

resetseed()
resetbuiltin()

-- // BODY OF THE SCRIPT // --


-- // DON'T TOUCH IF YOU DON'T KNOW WHAT YOU'RE DOING // --

function dobet()

counter+=1
if counter == 500 then
resetseed()
counter = 0
end
print("")
print("Counter:"..counter)
print("Highest Loss Streak:"..hiloss)
print("Current Profit:"..string.format("%3.8f",balance-initbalance))
print("")
if win then
loststreak = 0
end

if HiLoOnWin then
wincount += 1
change = math.random(1,3)
if wincount >= change then
bethigh = not bethigh
wincount = 0
end
end

nextbet = basebet

if !win then
loststreak+=1
if loststreak > hiloss then
hiloss = loststreak
end
end

if loststreak == prebet then


nextbet = base
end

if loststreak > prebet then


nextbet = previousbet * mult
end

if loststreak > 15 then


stop()
alarm()
print("NEGATIVE BALANCE!")
end

if balance >= targetbal then


stop()
ching()
print("TARGET BALANCE ACHIEVED!")
print("Current Profit:"..string.format("%3.8f",balance-initbalance))
end

end -- End of dobet() --

You might also like