You are on page 1of 1

chance = 34.

28
multiplier = 1.9
base = 0.00000512
nextbet = base
bethigh = false
rollcount = 7

function dobet()

--Randomizer
r=math.random(2)

if r == 1 then
bethigh=true
else
bethigh=false
end

--Randomly select High/Low


--bethigh = math.random(0,100)%2 == 0

--change seed every 7 bet


if rollcount == 7 then
rollcount = 0
resetseed();
else
rollcount = rollcount + 1
end

if (balance) < (nextbet) then


stop();
print(balance)
print("INSUFFICIENT FUNDS-FONDOS INSUFICIENTES")
end

--bet progression
if win then
nextbet = base
else
nextbet = previousbet * multiplier
end
end

end

You might also like