Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 3

--Harish Acharya Unstoppable Script v2

chance = 49.5

chance1 = chance
base = 0.1
minbetforsite = 0.1 --set any sites min bet
divider = 10000
curbet = base
nextbet = base
prevbet = base
bethigh = true
resultNumber = 0
res = 0
loseAmount = 0
maxBalance = 0
n = 1

nn=10
op=0
opt=0
i=0
round=0
bbet=0
balls0={}
balls1={}
balls2={}
balls3={}
option=0
inc=1
chance2=chance
nn=math.floor(math.random(1,48))
largestProfit=0
sbalance = balance
n=math.random(1,48)
for i=0, 49 do
balls0[i] = 0
end

for i=0, 48 do
balls1[i] = 0
end

function dobet()

if balance>=maxBalance then
maxBalance = balance
loseAmount = 0
else
loseAmount = maxBalance-balance
end

resultNumber=lastBet.roll
print(resultNumber)
nn=math.floor(math.random(1,48))
if nn%3==0 then
option=0

end
for i=0,49 do
if i>=resultNumber then
balls0[i]=0
else
balls0[i]=balls0[i]+1
end
end
for i=50,98 do
if i<=resultNumber then
balls1[i-50]=0
else
balls1[i-50]=balls1[i-50]+1
end
end

n=math.random(1,48)
if option==0 then
for i=nn,48 do
chance1=i
if balls0[i]<=((99/chance1)*10+(99/chance1)+
((99/chance1)/1.3))/18.5 then
chance=i
print(chance)
bethigh=false
option=chance
optionLose=balls0[i]
break
end
end
end

if option==1 then
for i=nn,48 do
chance1=i
if balls1[i]<=((99/chance1)*10+(99/chance1)+
((99/chance1)/1.3))/18.5 then
chance=i
print(chance)
bethigh=true
option=chance
optionLose=balls1[i]
break
end
end
end

if loseAmount<=0 then
base=balance/divider
nextbet=base
prevbet=base
n=1
opt=0
option=math.floor(math.random(0,1))
nn=math.random(1,5)
round=0
else
round+=1
if chance<=nn then
nextbet=prevbet*1.002
prevbet=nextbet
else
chance=math.floor(math.random(nn,chance))
end

if round%math.floor(math.random(20,250)) then
nextbet=loseAmount/(99/nn-1)
end

if nextbet>loseAmount/(99/chance-1) then
nextbet=loseAmount/(99/chance-1)
end

end

if nextbet<minbetforsite then
nextbet=minbetforsite
end
chance2=chance

if chance<5 then
chance=5
else
if chance>95 then
chance=95
end
end

end

You might also like