You are on page 1of 2

base = 0.

00001 --basebet disarankan balance/10000000


nextbet = base
bethigh = false
p = 0
l = 0
wincount = 0
losecount = 0
a = 0
i = balance*0.988
t = 5
k = 1400
po = 1
multi = 1.2
chance = 91
target = 20050 --set target yang di inginkan
simpan = 1000 --set nominal doge yang akan di wd
wallet = "isidenganwalletaddressdoge"
function dobet()
if balance >= target then
--hapus tanda 2 strip atau 2 minus dibawah untuk mengaktifkan auto wd
--withdraw(simpan,wallet)
print(" ")
print("Uhuyyyyyy!!!!!")
print(" ")
print("CONTINUING TO WIN MORE!!!")
print(" ")
resetstats()
end
if wincount == 5 then
resetseed()
bethigh=!bethigh
wincount = 0
end
if currentprofit > 0 then
p+= currentprofit
else
l-= currentprofit
end
if(i>k)then
resetseed()
print("target: "..target)
print("payout: "..po)
print("a: "..a)
print("lost: "..l)
print("chance: "..chance)
print("Profit to go: "..target - balance)
end
if win then
nextbet = base
chance = math.random(3000,8000)/100
wincount+=1
p =0
l = 0
a = 0
losecount = 0
else
a = math.random(4,9)
nextbet = l/po
if a == 4 then
chance = 58.6
po = 0.70477
nextbet = (l+base)/po
end
if a == 5 then
chance = 59.6
po = 0.6761
nextbet = (l+base)/po
end
if a == 6 then
chance = 60.6
po = 0.6485
nextbet = (l+base)/po
end
if a == 7 then
chance = 61.8
po = 0.6165
nextbet = (l+base)/po
end
if a == 8 then
chance = 62.68
po = 0.593
nextbet = (l+base)/po
end
if a == 9 then
chance = 63.68
po = 0.5687
nextbet = (l+base)/po
end
losecount+=1
end
print(" ")
print("payout: "..po)
print("a: "..a)
print("lost: "..l)
print(" ")
end
end
end

You might also like