Blackbot Script v1
Blackbot Script v1
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
bethigh = false
trigger = 0
highhit = 1
hit = 1
power = 0
low = 0
high = 0
winrun = 1
nextbet = basebet
--resetstats()
function dobet()
counter += 1
counter2 += 1
if win then
if winrun == 1 then
trigger = 1
end
if winrun == 2 then
winrun = 1
trigger = 3
end
randomizer()
print("HIT # "..hit)
print(" ")
nextbet=maincannons
chance=cannon1
newtarget1=balance
hit+=1
trigger=0
else
trigger = 2
cannons()
function cannons()
if trigger == 1 then
randomizer()
chance = cannon3
nextbet = basebet
end
if trigger == 2 then
hilo()
print("High : "..high.." / ".."Low : "..low)
function randomizer()
bethigh = math.random(0,100)%2 == 0
bethigh = !bethigh
end
function hilo()
end