You are on page 1of 1

chance = 90

bethigh = true
basebet = 0.1
nextbet = basebet

seedrandmin = 5
seedrandmax =15
seedrand = math.random(1,7)

function dobet()
seedrand = math.random(seedrandmin,seedrandmax)

if (win) then
chance = 90
nextbet = basebet
else

if chance == 25.00 then


nextbet = previousbet * 1.43738

else
resetseed();
chance = 25.00
nextbet = basebet/3.3

end
end
end

You might also like