You are on page 1of 2

resetseed()

basebet = balance/4100
chance = 49.95
minimalbet = 0.00000001
nextbet = minimalbet
bethigh = false
StartBalance = balance --google is the starting balance
trigger = 0 --totalcurrentwinloss*10
BalanceIsGreaterThanSt = 0
--percentofbalance = 10
totalcurrentwinloss = 0 --StartBalance - balance
gaingoal = 0 --totalcurrentwinloss/2
div = 0
totalwinslos = 0
goalachieved = 0
goalpartiallyachieved = 0
half = true
function dobet()
basebet = balance/4100
totalcurrentwinloss+=currentprofit
gaingoal+=currentprofit
trigger+=currentprofit

if currentprofit%2==0 then
div+=1 end
if currentprofit%1==0 then
totalwinslos+=1 end

if div==2 and totalwinslos==1 then


half=true
div=0
totalwinslos=0
end

if gaingoal<totalcurrentwinloss and profit<0 then


nextbet=basebet

end
if goalpartiallyachieved==1 then
goalpartiallyachieved=0 end

if (totalwinslos/div)>gaingoal then
goalpartiallyachieved+=1 end

if goalachieved==1 then
nextbet=basebet
end

if gaingoal>totalcurrentwinloss then
nextbet=basebet
gaingoal=0
totalcurrentwinloss=0
goalachieved+=1
end

if currentprofit%10==0 and totalwinslos==1 then


trigger+=1 end

if trigger ==1 then


nextbet=previousbet
else trigger=0
nextbet=basebet
end

if goalachieved==1 then
nextbet=basebet
goalachieved=0
end

if balance<StartBalance then
BalanceIsGreaterThanSt+=1
end
if BalanceIsGreaterThanSt==1 then
nextbet = basebet
end
if BalanceIsGreaterThanSt>1 then
nextbet = previousbet*1.5
end
if BalanceIsGreaterThanSt==0 then
nextbet = minimalbet
end
if nextbet>balance/40 then
nextbet=previousbet
end
if balance>StartBalance then
nextbet = basebet
BalanceIsGreaterThanSt = 0
StartBalance = balance
end
end

You might also like