0% found this document useful (0 votes)
32 views2 pages

300 To 10000 Doge

The document outlines a betting strategy with parameters for chance, base bet, target profit, and stop target. It includes a function that manages betting behavior, tracks profit, and adjusts the next bet based on win/loss outcomes. The script also includes conditions for stopping the betting process based on balance and profit targets.

Uploaded by

cpowe1990
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
32 views2 pages

300 To 10000 Doge

The document outlines a betting strategy with parameters for chance, base bet, target profit, and stop target. It includes a function that manages betting behavior, tracks profit, and adjusts the next bet based on win/loss outcomes. The script also includes conditions for stopping the betting process based on balance and profit targets.

Uploaded by

cpowe1990
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

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

You might also like