chance = 5.
16
i = 1
basebet = 0.000019
targetprofit = 150000
target = balance+targetprofit
stoptarget = 1000000
nextbet = basebet
bethigh = true
counter = 0
function dobet()
counter+=1
print(" ")
print("Profit :"..string.format("%.8f",profit))
print(" ")
print("Bet Amount :"..string.format("%.8f",nextbet))
print("Current Balance : "..string.format("%.8f",balance))
if counter == 25 then
print(" ")
print("Profit :"..string.format("%.8f",profit))
print(" ")
print("Current Balance : "..string.format("%.8f",balance))
print(" ")
counter=0
end
if (100) < (nextbet) then
stop();
print(balance)
end
if balance <= stoptarget then
--resetstats()
end
if balance>target then
stop()
print("=======================")
print("==== WD COOOOOOOOOOOOOOOOOK ====")
print("=======================")
print("Total Profit: "..string.format("%.8f",profit))
end
if win then
nextbet = previousbet
resetseed()
if nextbet < basebet then
nextbet=basebet
end
end
if !win then
nextbet = previousbet*1.056
end
end