Aqayen Script
Aqayen Script
Aqayen Script
-- For more profit and wager scripts, contact me via Telegram = @Aqayen --
basebet = 0.0000000038 --(For every 0.1 coin equals 0.00000001For example, if the
balance is 10 coins, set the basebet to 0.00000100)
paye1 = 1.5
target = balance*1.5
darbax = 0.5
afbax = 0.0000000000034 --(For every 0.1 coin equals 0.00000001 For example, if
the balance is 10 coins, set the basebet to 0.00000100)
xorbax = 0.5
darbor = 0
afbor = 1.00
xorbor = 1.00
nextbet = basebet
payout = paye1
chance = 33/payout
lives = 10000 --- extra live
prebet = 0
roll = 0
limitch = 0.01 -- limit min chance
limitls = 25000 -- limit losestreak
incafbax = 1 -- increase afbax
resetpartialprofit()
function dobet()
if partialprofit > 0 then resetpartialprofit() end
bethigh = true
if (win) then
if (darbor == 0) then
nextbet = basebet
if chance <= limitch and partialprofit < 0 then
nextbet = prebet
else
payout = paye1
chance = 33/payout
end
else
nextbet = nextbet+afbor
if chance <= limitch and partialprofit < 0 then
nextbet = prebet
else
payout = payout+xorbor
chance = 33/payout
end
end
if (lastBet.roll == 99.99) then
roll = roll + 1
end
else
if currentstreak <= -limitls then afbax = afbax * (1+(incafbax/100)) end
if (darbax == 0) then
nextbet = basebet
payout = paye1
chance = 33/payout
else
if currentstreak < -lives then
if (previousbet == prebet) then
nextbet = basebet+afbax
else
nextbet = nextbet+afbax
end
else
nextbet = prebet
end
if chance > limitch then
payout = payout+xorbax
chance = 33/payout
end
end
end
end