Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namesc = "RANDOM TEN"
- user = "Jave"
- ch = {4.7,20,40,60}
- nb = balance * 1e-8
- mp = 0
- mpp = 0
- target = balance + 100
- minbet = 0.0000001
- nextbet = nb
- chance = ch[4]
- if (nextbet < minbet) then nextbet = minbet end
- resetchart()
- resetstats()
- --resetseed()
- function dobet()
- if balance > target then
- stop()
- end
- bethigh = math.random(50) > 10
- if (profit > mp) then
- mp = profit
- nb = balance * 1e-7
- nextbet = nb
- chance = ch[4]
- mpp = mp/(balance-mp)*100
- elseif (chance == ch[4]) then
- chance = ch[math.random(1,2)]
- nextbet = previousbet - (previousbet * (40/100))
- elseif (chance == ch[3]) then
- chance = ch[2]
- nextbet = previousbet - (previousbet * (50/100))
- elseif (chance == ch[2]) then
- chance = ch[1]
- if (math.random(100)%3 == 0) then
- chance = ch[4]
- end
- nextbet = previousbet + (previousbet * (math.random(60)/100))
- elseif (chance == ch[1]) then
- chance = ch[math.random(1.02,3)]
- nextbet = nextbet + (nextbet * (100/100))
- end
- if (nextbet < minbet) then nextbet = minbet end
- print("---------------------------------------------------=---------------------------------------------------\n\n\n")
- print( "\n\n\t ════════════════════╗")
- print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ]\n╔═══════════════════════════════╝")
- print("║-=¦ Running by: ( "..user.." )\n║")
- print("║-=¦ Current Profit: \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
- print("║-=¦ MaxProfit: \t[ "..string.format("%.8f",mp).." /"..string.format("%.2f",mpp).."% ]")
- print("╚══════════════════════════════════════════════════\n\t\tBy: Rumble Dice Group")
- print("-------------------------------------------------------------------------------------------------------")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement