You are on page 1of 3

-- NOTES:

-- INITIAL BALANCE SHOULD AT LEAST BE 0,01 BTC


-- PLEASE SUBSCRIBE TO MY CHANNEL FOR MORE SCRIPTS:
https://www.youtube.com/channel/UCihSL797ho4Ae9IQ59VsspA
-- PLEASE DONATE IF YOU LIKE MY SCRYPT, THANKS!
-- My Donation Address > 33kx7iqfjSLuEAoW7EasLs83vontLmCvAE

-- Hit and Run

chance1 = 95.00
chance2=75.0
chance=chance1
bethigh = false
basebet2 = 0.00000500
basebet =0.00000100
multiplier=4.5
nextbet = basebet
safety=0.0
initbalance=(balance * safety)
limit=balance+0.20000000
betcount=0
counter=0
counter2=0
lostbet=0.00001500
highbet=0
high=0
low=0
totalstreak=0
totalloss=0
totalwin=0
wincount=0
resetstats()
resetseed();

-- SET PROFIT TARGET


profittarget= balance+0.00010000 -- EDIT THIS TO THE AMOUNT OF PROFIT YOU WANT TO
REACH

print("TARGET PROFIT")
print(profittarget)

print("Safety Balance Limit =")


print(initbalance)

function dobet()

randomizer()

if balance > limit then


print("Balance Over the Limit ")
ching();
stop();
else
counter+=1
print(counter)
end
if balance < initbalance then

alarm();

print("Initbalance =")
print(initbalance)

print("Balance")
print(balance)

print("Emergency Recovery")

print("Large Bet Amount Lost!")

print("Bet Half of Balance")

chance = 90.00
nextbet = basebet
initbalance=(balance)*safety

-- stop();

end

rstseed()

if (win) then
wincount+=1
if wincount>totalwin then totalwin=wincount end
chance = chance1
nextbet = basebet
initbalance = balance * safety
print(" ")
print("High : "..high.." / ".."Low : "..low)
print("Highest Win Streak : "..totalwin)
print("Highest Loss Streak : "..totalloss)
print("Highest Total Loss Streak : "..string.format("%.8f",
totalstreak))
print("Total Profit : "..string.format("%.8f", profit))
print(" ")
losscount=0
else

losscount+=1
wincount=0
if chance == chance2 then
nextbet = previousbet * multiplier
else
chance = chance2
nextbet = basebet2
betcount=betcount+1
end

if nextbet > totalstreak then totalstreak+=nextbet end


if losscount>totalloss then totalloss=losscount end
end

if (balance) >= profittarget then


alarm()
print("Your Balance is ") print(balance)
print(" ")
print("TARGET ACHIEVED!!!")
print(" ")
print("You Won ") print(profit) print(" for this Session")
print(" ")
print(" ")
ching();
stop()
end

end

function betroll()
if (lastBet.roll < chance2) then
low += 1
end

if (lastBet.roll > (99.99 - chance2)) then


high += 1
end

end

function randomizer()

r=math.random(2)

if r==2 then
bethigh=true
else
bethigh=false
end

end

function rstseed()

if counter2>500 then

resetseed()
counter2=0
low=0
high=0

else

counter2+=1

end
end

You might also like