--- Aqayen best wager V5 ---
--For more profit and wager scripts, contact me via Telegram = @Aqayen --
chance = 98
bethigh = true
bb = balance
basebet = bb/666
nextbet = basebet
ch1 = 98
ch2 = 49.5
loss0 = 0
loss1 = 0
h = 2
losts = 0
loss0 = 0
loss1 = 0
stopside = 2
target = balance*11
function dobet()
if balance>target then stop() end
losts = losts + currentprofit
if (losts >= 0) then
losts = 0
end
if (win) then
bethigh = true
chance = ch1
nextbet = basebet
side = math.random(0,1)
else
if (chance == lastBet.roll) then
multy = 99 / lastBet.roll
nextbet *= multy /(multy - 1) * 1.01
else
chance = 5
multy = 99 / lastBet.roll
nextbet = math.abs(losts)/(multy - 1) * 1.01
end
if (currentstreak <= -h) then
nextbet = 0.00000001
chance = 12
end
local side = math.random(0,1)
if (side == 0) then
loss0 += 1
bethigh = true
if (loss0 == stopside) then
bethigh = false
end
loss1 = 0
else
loss1 += 1
bethigh = false
if (loss1 == stopside) then
bethigh = true
end
loss0 = 0
end
end
if (losts == 0) then
nextbet = basebet
end
if (nextbet < basebet) then
nextbet = basebet
end
end