cannon1 = 95.
00
cannon2 = 39.0
cannon3 = 90.00
chance = cannon3
multiplier = 1.77
target1 = balance + 1
maincannons = 0.000080000
basebet = 0.000050000
basebet2 = 0.000030000
limit = 0.000025000
minr = 0.000060000
maxr = 0.000100500
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.." LTC")
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).." LTC...")
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).." LTC...")
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