Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
9 views4 pages

Hit N Run

The document outlines a betting strategy involving various parameters such as cannon values, target profits, and betting amounts. It includes functions for placing bets, adjusting strategies based on outcomes, and tracking performance metrics. The code also features mechanisms for randomizing bets and managing streaks in betting results.

Uploaded by

Ari Smith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views4 pages

Hit N Run

The document outlines a betting strategy involving various parameters such as cannon values, target profits, and betting amounts. It includes functions for placing bets, adjusting strategies based on outcomes, and tracking performance metrics. The code also features mechanisms for randomizing bets and managing streaks in betting results.

Uploaded by

Ari Smith
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

cannon1 = 95.

00
cannon2 = 39.6
cannon3 = 90.00
chance=cannon3
multiplier=1.77 --Increase on Lose for Cannon2

target1=balance+0.1063000 --BTC - Stop Run Reaching Target

maincannons=0.00000100
basebet = 0.00000100
basebet2 = 0.00000050
limit=0.00002500
minr=0.00000100 --the minimum Buffer you want to set
maxr=0.00000150 -- the maximum Buffer you want to set
buffer= math.random(minr*100000000,maxr*100000000)/100000000.0

newtarget=balance+maincannons+0.00000500
newtarget1=balance
betcount=0
counter=31
counter2=0
view=10

bethigh=false
trigger=0
highhit=1
hit=1
power=0
low=0
high=0
winrun=1

nextbet = basebet
--resetstats()

print("TARGET PROFIT AT : "..target1.." BTC")

function dobet()

counter+=1
counter2+=1

if (lastBet.roll < cannon2) then


low += 1
end

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


high += 1
end

if counter2 == view then


print(" ")
power=(balance-newtarget)*-1
print("Profit So Far "..string.format("%.8f", profit))
print("Needed Power : "..string.format("%.8f", power).." BTC...")
print("High/Low : "..high.." / "..low)
print(" ")
view+=30
end

if balance > target1 then


print(" ")
stop()
ching()
print("TARGET REACHED!")
print(" ")
print("Profit So Far "..string.format("%.8f", profit))
print("Balance is "..balance)
print(counter2.." Bets Played!")
ching()
print(" ")
end

if win then

if winrun==1 then
trigger=1
end
if winrun==2 then
winrun=1
trigger=3
end

if counter > 500 then


resetseed()
counter=0
low=0
high=0
print(" ")
print("Profit : "..string.format("%.8f", profit))
print("In "..counter2.." Rolls")
print(" ")
print("Highest Hits : "..(highhit-1))
print(" ")
print("Cannons Building Up Power...")
print(" ")
power=balance-newtarget
print("Needed Power : "..string.format("%.8f", power).." BTC...")
print("Ammo : "..string.format("%.8f", buffer))
print(" ")
end

if balance > newtarget then

randomizer()

buffer= math.random(minr*100000000,maxr*100000000)/100000000.0

if hit > 30 then


print("BONUS")
end

print("HIT # "..hit)
print(" ")
nextbet=maincannons
chance=cannon1
newtarget1=balance
hit+=1
trigger=0

if hit > 15 then


nextbet=maincannons/2
end

if cannon1 < 91 then


cannon1=95
else
cannon1-=1
end

if hit > highhit then


highhit = hit
end
else
cannon1=95
cannons()
end

else
trigger=2
cannons()

if hit > 1 then


print("Needed Power : "..string.format("%.8f", power))
hit=1
end
end
end -- end of dobet

function cannons()

print("Current Streak : "..currentstreak)


print("")
newtarget=newtarget1+buffer

if trigger == 1 then
randomizer()
chance=cannon3
nextbet=basebet
end

if trigger== 2 then

hilo()
print("High : "..high.." / ".."Low : "..low)

if chance == cannon2 then


nextbet = previousbet * multiplier
else
chance = cannon2
nextbet = basebet2
winrun=2
end
end
if trigger==3 then
chance = cannon2
nextbet = basebet2
winrun=1
end

end -- end of function cannons

function randomizer()

bethigh=math.random(0,100)%2==0
bethigh=!bethigh

end

function hilo()

if high > low then


bethigh=true
else
bethigh=false
end

if (high-low)>5 then
low=0
high=0
end

if (low-high)>5 then
low=0
high=0
end

end

You might also like