mainChance = 95
chance = mainChance
basebet = 0.00000100
nextbet = basebet
bethigh = true
losecount = 0
counter = 0
profittarget = 3.00000000
resetstats()
resetseed()
function dobet()
if (balance) >= profittarget then
stop();
print("")
print(profit)
print(profittarget)
print(balance)
print("Target is reached!!!")
print("")
end
counter+=1
if counter >= 250 then
resetseed()
counter = 0
end
if balance < 0.00000001 then
print("")
print("Security Stop")
stop();
end
if (win) then
chance = mainChance
nextbet = basebet
losecount = 0
end
if (!win) then
losecount += 1
if (losecount > 1) then
nextbet = previousbet*1.12
chance = (1/(((nextbet+(nextbet-basebet))/previousbet)))*20
if chance < 9.0 then
chance = 9.0 end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
else
nextbet = previousbet*1.12
chance = (1/(((basebet+nextbet))/nextbet))*25
if chance<9.0 then
chance = 9.0 end
bethigh = !bethigh
print ("LOSE")
print(nextbet)
print(chance)
print(profit)
print(bets)
end
end
end