Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- divisor = 1e4
- minbet = 1e-8
- basebet = balance/divisor
- nextbet = basebet
- chance = 80
- loses = 0
- count_ch = 0
- x = 10
- ch = 1
- sch = 2
- loss = 0
- maxprofit = 0
- stop_profit = 1050--%
- target_stop_profit = (balance * (stop_profit/100))
- resetstats()
- function dobet()
- bethigh = math.random(5) > 2
- if (win) then
- loses = 0
- x = 10
- count_ch = 0
- if (luck and chance <= 25) then
- luck = false
- chance = math.random(1,25)
- loss = 0
- ch = 1
- sch = 1
- nextbet = previousbet
- else
- basebet = balance/divisor
- nextbet = basebet
- chance = 80
- end
- if (profit > maxprofit) then
- maxprofit = profit
- end
- if (profit >= target_stop_profit and stop_profit > 0) then
- print("\nStop Target Profit..!")
- stop()
- end
- else
- loss += previousbet
- loses += 1
- if (loses == 1) then
- if (chance == 80) then
- luck = true
- chance = ch
- if (ch >= 25) then
- ch = sch
- if (sch == 25) then
- sch = math.random(1,25)
- else
- sch += 1
- end
- else
- if (count_ch%2 == 0 and count_ch > 0) then
- ch += 1
- else
- count_ch += 1
- end
- end
- x = 10
- if (math.random(30) > 15) then
- x = math.random(30,50)
- end
- nextbet = (loss + (loss * (x/100)))/((99/chance)-1)
- if (nextbet <= minbet) then nextbet = minbet end
- else
- luck = false
- nextbet = basebet
- chance = 80
- loses = 0
- end
- else
- luck = false
- nextbet = basebet
- chance = 80
- loses = 0
- end
- end
- print( "---------------------------------------------------=---------------------------------------------------\n\n\n")
- print("\t ═══════════════════╗")
- --print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ] ║\n╔══════════════════════════════╝")
- --print("║-=¦ Running by: ( "..user.." )")
- print("║-=¦ Target Profit: \t[ "..stop_profit.."% ]")
- print("║-=¦ Profit: \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
- print("║-=¦ MaxProfit: \t[ "..string.format("%.2f",maxprofit/(balance-maxprofit)*100).."% ]")
- print("╚══════════════════════════════════════════════════\n\t\tBy: Rumble Dice Group")
- print("-------------------------------------------------------------------------------------------------------")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement