---Best Miner Script v12---
--For more profit and wager scripts, contact me via Telegram = @Aqayen --
basebet = balance/24000 -- safe mod balance/100000
chance = 49.95
nextbet = basebet --set basebet
bethigh = false
loss = 0
target = balance*1.25 --target balance 25%
roundprofit = 0
r = 0
power = roundprofit*-1
function dobet()
roundprofit+=currentprofit
r = math.random(1,4)
if r>2 then bethigh=!bethigh end
chance = math.random(39,89)
loss+=1
if (loss>=(math.random(2,3))) then
nextbet = previousbet*2
loss = 0
end
if roundprofit<0 then
round = round + previousbet
multi = 99/chance
if (multi < 2) then
nextbet = (round + round/10) / (multi - 1)
else
nextbet = (round + round/100)/ (multi - 1)
end
if (nextbet < basebet) then
nextbet = basebet
end
end