Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

--- ONLY RUMBLE

basebet = 0.00008
chrange = {11,21}
minbet = 0.00008
maxroll = 10
multi = 1.3
profitc = 0
ctlose = 0
betroll = 0
nextbet = basebet
chance = chrange[1]

resetstats()
function dobet()
print("\n\n| - RUMBLE VIP - |\n")
fn_simplestats(0,0)
print("\n\n")
betroll = betroll + 1
profitc = profitc + currentprofit
if profitc > 0 then
profitc = 0
ctlose = 0
if betroll > maxroll and maxroll > 0 then
betroll = 0
chance = arraych[math.random(#arraych)]
nextbet = basebet / (99/chance)
end
else
ctlose = ctlose + 1
nextbet = previousbet * (1 +(chance*0.02))
end
if nextbet < minbet then nextbet = minbet end

fn_streaklose(chance,ctlose)
print("\n")
end

simplestats_balhi = balance
simplestats_balst = balance
simplestats_maxdrop,simplestats_profitc,simplestats_wager = 0,0,0
simplestats_stoponwin = false
function fn_simplestats(dmx,bmx)
simplestats_wager = simplestats_wager + previousbet
simplestats_profitc = simplestats_profitc + currentprofit
if (simplestats_profitc >= 0) then
simplestats_profitc = 0
if simplestats_stoponwin then stop() end
simplestats_balhi = balance
end
simplestats_drop = simplestats_balhi - balance
if (simplestats_drop > simplestats_maxdrop) then
simplestats_maxdrop = simplestats_drop
end
if simplestats_maxdrop/balance*100 > dmx and dmx > 0 then simplestats_stoponwin
= true end
if nextbet > bmx and bmx > 0 then simplestats_stoponwin = true end
print("|||-- Profit \t[ "..string.format("%.8f",profit).."\
t"..string.format("%.2f",profit/(balance-profit)*100).."% ]")
print("|||-- Wager \t[ "..string.format("%.8f",simplestats_wager).."\
t"..string.format("%.2f",simplestats_wager/simplestats_balst*100).."% ]")
print("|||-- Dropdown \t[ "..string.format("%.8f",simplestats_maxdrop).."\
t"..string.format("%.2f",simplestats_maxdrop/balance*100).."% ]")
end

function fn_decr(x,y)
return x - (x * (y/100))
end

arraych = {}
arrayls = {}
for i = 1,chrange[2]-chrange[1]+1,1
do
arraych[i] = (chrange[1]+i)-1
arrayls[i] = 0
end
function fn_streaklose(ch,ct)
for i = 1,#arraych,1
do
if (arraych[i]==ch) then
dispinf = ""
if (ct == arrayls[i] and arrayls[i] > 0) then
nextbet = fn_decr(nextbet,25)
dispinf = "REDUCE"
end
if (ct > arrayls[i]) then
arrayls[i] = ct
end
dispbet = "\t"..string.format("%.8f",basebet / (99/chance))
dispmt = " x"..(1 +(arraych[i]*0.02))
display = "-x- Chance "..arraych[i].."% \t "..arrayls[i].." /
"..ct..dispbet..dispmt.." "..dispinf
else
display = "--- Chance "..arraych[i].."% \t "..arrayls[i]
end
print(display)
end
end

You might also like