resetseed();
chance = 80
bethigh = false
losses = 0
bets = 0
StopOnLoss = -0.01000000
Increase = 1.05000
basebet = 0.00001
nextbet = basebet
roundprofit = 0.00001
round = 0
function dobet()
losses+=1
bets+=1
round = round + currentprofit
if ( profit < StopOnLoss ) then
stop()
alarm()
end
if (round > roundprofit) then
bets = 0
round = 0
nextbet = basebet
resetseed();
end
if (win) then
chance = 20
bethigh = !bethigh
else
if (losses > 1) then
chance = 80
bethigh = !bethigh
end
end
if (bets > 1) then
nextbet = previousbet*Increase
end
end
chance = 80
bethigh = false
losses = 0
bets = 0
StopOnLoss = -0.01000000
Increase = 1.05000
basebet = 0.00001
nextbet = basebet
roundprofit = 0.00001
round = 0
function dobet()
losses+=1
bets+=1
round = round + currentprofit
if ( profit < StopOnLoss ) then
stop()
alarm()
end
if (round > roundprofit) then
bets = 0
round = 0
nextbet = basebet
resetseed();
end
if (win) then
chance = 20
bethigh = !bethigh
else
if (losses > 1) then
chance = 80
bethigh = !bethigh
end
end
if (bets > 1) then
nextbet = previousbet*Increase
end
end
0 Comments