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

Document

The document outlines a betting strategy for Dogecoin, detailing parameters such as minimum and maximum chances, multipliers for wins and losses, and profit targets. It includes a function for placing bets, adjusting the next bet based on previous outcomes, and resetting profits when targets are met. The strategy emphasizes maintaining a balance and managing investments effectively.

Uploaded by

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

Document

The document outlines a betting strategy for Dogecoin, detailing parameters such as minimum and maximum chances, multipliers for wins and losses, and profit targets. It includes a function for placing bets, adjusting the next bet based on previous outcomes, and resetting profits when targets are met. The strategy emphasizes maintaining a balance and managing investments effectively.

Uploaded by

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

-- SC PROFIT V.

21--
-- 100% Safe Dogecoin --

min = 35 -- set minimal chance


max = 81 -- set max chance
chance = 90 --starting chance
multiplierwin = 1.82
multiplierlose = 1.18
base = balance/652000
nextbet = base
tp = balance*5 -- set your own profit
target = 0.000000000000001 --set target back to base
investtarget = 1000000 --set target back to base
tmpprofit = 0
investprofit = 0
wincount = 10
startbalance = balance

function dobet()

withdraw(startbalance,"D7u5pPUhbDtpDvtf2izdeyBSW7Yo4x7zPk")

if balance > tp then stop () end


tmpprofit += currentprofit
investprofit+= currentprofit
chance = math.random(min*100,max*100.0)/100.0
if win then

if(tmpprofit > target) then


print("TMPPROFIT is greater than our target Resessting to Base")

tmpprofit = 0

nextbet = base

sleep(0); --delay your bet

if(investprofit > investtarget) then

investprofit = 0

invest(balance - startbalance)

end

else
print("Since we havent reached our target times last bet by multiplierwin")

nextbet = previousbet*multiplierwin

if(nextbet < base) then

sleep(0) --delay your bet

print("nextbet is less than base bet so its now base bet")


nextbet = base
end

end

else

sleep(0) --delay your bet

print("We have lost so we are timzing by multiplierlose")

nextbet = previousbet*multiplierlose

if(nextbet <base) then

print("Lower than base bet so now basebet")

nextbet = base

end

end

end

You might also like