Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

bet = balance / 1290

nextbet = bet
chance = 8
profittarget = 1
amount = 250
bethigh = false

function dobet()

if (wagered) >= profittarget


then
stop();
end

if win
then
--resetstats()

nextbet = bet
chance = 8
else
nextbet = previousbet * 1.11236
chance += .25
end
if chance > 12
then
nextbet = previousbet * 1.222223
end
if chance > 18
then
nextbet = previousbet * 1.32
end
if chance > 24
then
nextbet = previousbet * 1.434783
end
if chance > 30
then
nextbet = previousbet * 1.571429
end
if chance > 36
then
nextbet = previousbet * 1.736843
end
if chance > 42
then
nextbet = previousbet * 1.941177
end
if chance > 48
then
nextbet = previousbet * 2.200001
end
if chance > 54
then
nextbet = previousbet * 2.538462
end
if chance > 60
then
nextbet = previousbet * 3
end
if chance > 66
then
nextbet = previousbet * 3.666667
end
if chance > 72
then
nextbet = previousbet * 4.125
end
if( balance >= profittarget) then
stop()
end
end

You might also like