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

6 Best 5

The document outlines a betting strategy with specific conditions for investment amounts in Doge, ETH, BTC, and LTC. It emphasizes the importance of managing losses and suggests a maximum of 3 betting sessions per day, each lasting 30 minutes. The script includes logic for adjusting bets based on wins and losses, with a focus on maintaining a balance and minimizing risks.

Uploaded by

Yan Mikhlin
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)
11 views2 pages

6 Best 5

The document outlines a betting strategy with specific conditions for investment amounts in Doge, ETH, BTC, and LTC. It emphasizes the importance of managing losses and suggests a maximum of 3 betting sessions per day, each lasting 30 minutes. The script includes logic for adjusting bets based on wins and losses, with a focus on maintaining a balance and minimizing risks.

Uploaded by

Yan Mikhlin
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

-- Modalmu harus diatas 1 Doge, 0.

005 ETH,BTC,LTC gan


-- makin gede modalmu makin cepet profitmu
-- kalua Los 7 segera off bot main lagi nanti aja
-- Sehari main 3 kali aja (1 kali main 30 menit saja)
-- Sayangi duit mu, profit dikit lebih baik timbang hilang semua modalmu

-- 7 max losses (ngeri) - 27.364138


-- 8 max losses (mendinglah) - 7.3446286
-- 9 max losses (resiko kalah tinggal ngopi) - 1.9714477
-- 10 max losses (aman ditingal ke wc) - 0.5291766
-- 11 max losses (ditingal tidur seharian) - 0.1420417
-- 12 max losses (bisa di tinggal nyantai saat liburan) - 0.038
-- 13 max losses (dag dig dug modal gede makin asik profitny) -0.010233

betcalc = 0.529 -----> edit betcalc dengan yang di atas


-------------------------------------------

bethigh = false
stopnow = false
first = true
done = true
chance = 95

if (betcalc < 0.01) then print("Silakan atur betcalc kemudian restart skrip")
stop() end

base = balance * (betcalc / 100000)


curbet = base * 3.7255
nextbet = base

function dobet()
base = balance * (betcalc / 100000)

if (first) then
if(stopnow) then stop() end
if !Win then
chance = math.random(40,55)
bethigh=!bethigh
nextbet = curbet
first = false
done = true
end
end

if(!first and !done) then


if(stopnow) then stop() end
if win then
chance = math.random(25,34)
curbet = base * 3.7255
nextbet = base
first = true
done = true
else
curbet = curbet * 3.7255
nextbet = curbet
chance = math.random(67,74)
bethigh=!bethigh
end
end
done = false
end

You might also like