Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namesc = "HUGEBET x PANIC"
- basebet = balance/1e5
- nextbet = basebet
- h_chance = {90,91}
- p_chance = {36,37,5,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25}
- chindex = 1
- first_index = false
- modes = {"HUGEBET","PANIC_GREEN"}
- mode = modes[1]
- chance = h_chance[1]
- c_loses = 0
- c_wins = 0
- t_wins = 0
- maxprofit = 0
- if (math.random(100)%2 == 0) then
- bethigh = false
- end
- resetstats()
- resetseed()
- resetchart()
- function dobet()
- print("-----------------------------------------------------------------------------")
- if (win) then
- t_wins += 1
- c_wins += 1
- c_loses = 0
- if (profit >= maxprofit) then
- maxprofit = profit
- mpf = maxprofit/(balance - maxprofit)*100
- mode = modes[1]
- c_wins = 0
- chance = h_chance[1]
- nextbet = basebet
- else
- if (mode == modes[1]) then
- mode = modes[2]
- chindex = math.random(1, #p_chance)
- chance = p_chance[chindex]
- cc = 99/(chance/2)
- if (cc <= 0) then cc = chance end
- nextbet = math.abs(partialprofit * 1.5)/cc
- if (nextbet <= basebet) then nextbet = basebet end
- end
- end
- if (mode == modes[1]) then
- nextbet = basebet
- chance = math.random(h_chance[1],h_chance[2])
- else
- if (t_wins%4 == 0) then
- nextbet = previousbet + (previousbet * (50/100))
- end
- if (c_wins == 1) then
- nextbet = previousbet - (previousbet * (50/100))
- elseif (c_wins == 2) then
- nextbet = previousbet + (previousbet * (100/100))
- elseif (c_wins == 3) then
- nextbet = previousbet - (previousbet * (40/100))
- c_wins = 0
- mode = modes[1]
- end
- end
- else
- c_loses = c_loses+1
- c_wins = 0
- mode = modes[2]
- chindex = math.random(1, #p_chance)
- chance = p_chance[chindex]
- if (c_loses == 1) then
- c_loses = 0
- bb = basebet/1.5
- if (bb <= basebet) then bb = basebet end
- nextbet = previousbet + (previousbet * (28.5/100))
- end
- end
- print("\t ══════════════════════════╗")
- print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ] ║\n╔═════════════════════════════════════╝")
- print("║-=¦ Mode: \t[ "..mode.." ]")
- print("║-=¦ Profit: \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
- print("║-=¦ MaxProfit: \t[ "..string.format("%.2f",mpf).."% ]")
- print("╚══════════════════════════════════════════════════\n\t\tBy: Rumble Dice Group")
- print("-------------------------------------------------------------------------------------------------------")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement