You are on page 1of 2

-- 7 max losses (ludicrous) - 27.

364138
-- 8 max losses (stupid) - 7.3446286
-- 9 max losses (risky) - 1.9714477
-- 10 max losses (safe) - 0.5291766
-- 11 max losses (safest) - 0.1420417
-------------------------------------------
betcalc = 1.5
-------------------------------------------

bethigh = true
stopnow = false
first = true
done = true
chance = 27.5
-------------------------------------------
target = 20050 --set target balance
simpan = 1000 --set nominal to withdraw
wallet = "yourwalletaddresshere"
-------------------------------------------

if (betcalc < 0.01) then print("Please set betcalc then restart the script") 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 = 50
nextbet = curbet
first = false
done = true
end
end
if(!first and !done) then
if(stopnow) then stop() end
if win then
chance = 27.5
curbet = base * 3.7255
nextbet = base
first = true
done = true
else
curbet = curbet * 3.7255
nextbet = curbet
chance = 72.5
end
end
done = false
if balance >= target then
--TO ACTIVATE AUTO WITHDRAW, REMOVE DOUBLE DASH or STRIP BEFORE WITHDRAW BELOW
--withdraw(simpan,wallet)
print(" ")
print("NICE!!!!!")
print(" ")
print("KEEP IT UP!!!")
print(" ")
end
end

You might also like