Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namesc = "RANDOM TEN"
- user = "Artabali"
- ch = {10,20,40,60}
- nb = balance * 1e-8
- mp = 0
- mpp = 0
- minbet = 1e-8
- nextbet = nb
- chance = ch[4]
- if (nextbet < minbet) then nextbet = minbet end
- resetchart()
- resetstats()
- resetseed()
- function dobet()
- bethigh = math.random(50) > 10
- if (profit > mp) then
- mp = profit
- nb = balance * 1e-5
- nextbet = nb
- chance = ch[4]
- mpp = mp/(balance-mp)*100
- elseif (chance == ch[4]) then
- chance = ch[math.random(1,2)]
- nextbet = previousbet - (previousbet * (30/100))
- elseif (chance == ch[3]) then
- chance = ch[2]
- nextbet = previousbet - (previousbet * (30/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(40)/100))
- elseif (chance == ch[1]) then
- chance = ch[math.random(2,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