best wager script v1 (2)
best wager script v1 (2)
--For more profit and wager scripts, contact me via Telegram = @Aqayen --
chance = 98
bethigh = true
bb = balance
basebet = bb/666 -- for safe mod set bb/2222
nextbet = basebet
ch1 = 98
ch2 = 49.5
loss0 = 0
loss1 = 0
h = 2
losts = 0
loss0 = 0
loss1 = 0
stopside = 2
target = balance*1.2
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 == ch2) then
multy = 99 / chance
nextbet *= multy /(multy - 1) * 1.01
else
chance = ch2
multy = 99 / chance
nextbet = math.abs(losts)/(multy - 1) * 1.01
end
if (currentstreak <= -h) then
nextbet = 0.00000001
chance = ch1
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