Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namesc = "RISK REPEATS v4"
- startbal = balance
- t_profit = 0 --%
- basebet = balance/1e4
- nextbet = basebet
- iflose = math.random(45,75)
- repeats = 6
- start_chance = 11
- end_chance = 2
- chance = start_chance
- add_chance = false
- mpf = 0
- c_loses = 0
- bethigh = false
- dontresetwin = true
- lock = false
- status = "OFF"
- resetstats()
- resetseed()
- resetchart()
- balhigh = balance
- ballow = balance
- maxprof = 0
- w_drop = 0
- prevdropdown = 0
- dropdown = w_drop
- t_profit = (startbal * (t_profit/100)) - balance
- function dobet()
- print("------------------------------------------------------------------------------------------------------\n\n\n")
- if (win) then
- dontresetwin = true
- balhigh = balance
- w_drop -= previousbet * (99/chance)
- if (profit >= maxprof) then
- if (profit >= t_profit and t_profit > 0) then
- print("\nStop Target Profit..!")
- stop()
- end
- lock = false
- maxprof = profit
- mpf = maxprof/(balance-maxprof)*100
- w_drop = 0
- status = " OFF"
- resetseed()
- else
- lock = true
- status = "ON"
- nextbet = (basebet + previousbet/(chance)) * 1.5
- end
- if (dontresetwin) then
- if (not lock) then
- nextbet = basebet + (previousbet/(chance/1.5))
- chance = math.random(end_chance+1,start_chance)
- end
- else
- if (not lock) then
- chance = start_chance
- nextbet = basebet
- end
- end
- add_chance = false
- c_loses = 0
- resetseed()
- else
- ballow = balance
- c_loses += 1
- if (dontresetwin and not lock) then
- nextbet = basebet
- dontresetwin = false
- c_loses = 0
- elseif (c_loses%repeats == 0) then
- if (add_chance) then
- chance += 1
- else
- chance -= 1
- end
- iflose = math.random(45,75)
- nextbet = previousbet + (previousbet * (iflose/100))
- end
- if (chance < end_chance or chance > start_chance) then
- chance = math.floor(start_chance/2)
- add_chance = math.random(100)%2 == 0
- end
- end
- w_drop += previousbet
- if (w_drop >= prevdropdown) then
- dropdown = w_drop
- prevdropdown = dropdown
- end
- drop = balhigh - ballow
- dropp = drop/balhigh*100
- dropdownp = dropdown/startbal*100
- print("\t ══════════════════════════╗")
- print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ] ║\n╔═════════════════════════════════════╝")
- print("║-=¦ Lock: \t[ "..status.." ]")
- 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