You are on page 1of 2

resetstats()

chance = 33.3
multiplier = 1.6
multiplier2 = 0.50
i = 1
basebet = 0.001 --> Basebet / Minimum Bet -- Can be adjusted to the
minumum bet of the chosen coin
targetprofit = 1000 --> Target Profit Adjust to at least 10% of Bankroll
target = balance+targetprofit
stoptarget = 100 -- Set min Balance to stop script
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/5

if nextbet < basebet then


nextbet=basebet
end

end

if !win then

nextbet = previousbet*1.6

end

end

You might also like