You are on page 1of 2

-- sc HAPPY Shiba

-- Terpesona BBC

nextbet = 1
chance = 33
base = 1 --safe 1 trillion :p
nextbet = base
if base <= 1 then base = 1 end
bethigh = true
losecount = 0
target = balance * 1.5 --common use x2

bets = 0

dicebot = 1
startbalance = balance
netprofit = 0
time = os.date("*t")
currenttime = time
local clock = os.clock
local t0 = clock()
t1 = 0
runtime = time
starttime = clock()

function dobet()
bets = bets + 1
if balance >= target then resetseed() stop() end

if win then

nextbet = base --safe 1 trillion :p


if nextbet <=1 then nextbet = 1 end
chance = 20
losecount = 0
else
nextbet = previousbet*1.33
losecount = losecount+1
end
if bets > 666 then
resetseed()
resetstats()
bets = 0
end
if (losecount >= 6) then
bethigh = not bethigh
nextbet = previousbet*1.33
chance = 6
end
if (losecount >= 10) then
nextbet = previousbet*1.33
chance = 20
end
if (losecount >= 12) then
bethigh = not bethigh
nextbet = previousbet*1.33
chance = 8
end
if (losecount >= 16) then
nextbet = previousbet*1.55
chance = 28
end
if ( losecount >= 18) then
bethigh = not bethigh
nextbet=previousbet*1.5
chance = 13
end
if ( losecount >= 19) then
nextbet=previousbet*1.51
chance = 14.3
end
if ( losecount >= 20) then
bethigh = not bethigh
nextbet = previousbet*1.53
chance = 15.5
end
if ( losecount >= 21) then
nextbet=previousbet*1.56
chance = 16.2
end
if ( losecount >= 22) then
bethigh = not bethigh
nextbet=previousbet*1.56
chance = 16.68
end
if ( losecount >= 23) then
nextbet=previousbet*1.56
chance = 17.18
end
if ( losecount >= 25) then
bethigh = not bethigh
nextbet = previousbet*1.65
chance = 36
end
netprofit=balance-startbalance
curtime = clock()
times = math.floor(curtime - starttime)
hours = math.floor(times / 3600)
minutes = math.floor((times - (hours * 3600)) / 60)
seconds = math.floor((times - (hours * 3600) - (minutes * 60)))
print("-------------------------------")
if dicebot == 0 then
print(("Start Time: %02d:%02d:%02d"):format(currenttime.hour,
currenttime.min, currenttime.sec))
end
print("Running Time: "..hours ..':'..minutes..':'..seconds)
print("Total Profit: "..string.format("%.8f",balance-startbalance))
print("% Profit: "..string.format("%.6f",netprofit*100/startbalance))

chance = math.floor((chance*100)+0.5)/100
end

You might also like