Advertisement
Baliarta

Random 10

Feb 1st, 2023
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. namesc = "RANDOM TEN"
  2. user = "Artabali"
  3. ch = {10,20,40,60}
  4. nb = balance * 1e-8
  5. mp = 0
  6. mpp = 0
  7.  
  8. minbet = 1e-8
  9. nextbet = nb
  10. chance = ch[4]
  11. if (nextbet < minbet) then nextbet = minbet end
  12.  
  13. resetchart()
  14. resetstats()
  15. resetseed()
  16.  
  17. function dobet()
  18. bethigh = math.random(50) > 10
  19. if (profit > mp) then
  20. mp = profit
  21. nb = balance * 1e-5
  22. nextbet = nb
  23. chance = ch[4]
  24. mpp = mp/(balance-mp)*100
  25. elseif (chance == ch[4]) then
  26. chance = ch[math.random(1,2)]
  27. nextbet = previousbet - (previousbet * (30/100))
  28. elseif (chance == ch[3]) then
  29. chance = ch[2]
  30. nextbet = previousbet - (previousbet * (30/100))
  31. elseif (chance == ch[2]) then
  32. chance = ch[1]
  33. if (math.random(100)%3 == 0) then
  34. chance = ch[4]
  35. end
  36. nextbet = previousbet + (previousbet * (math.random(40)/100))
  37. elseif (chance == ch[1]) then
  38. chance = ch[math.random(2,3)]
  39. nextbet = nextbet + (nextbet * (100/100))
  40. end
  41. if (nextbet < minbet) then nextbet = minbet end
  42. print("---------------------------------------------------=---------------------------------------------------\n\n\n")
  43. print( "\n\n\t ════════════════════╗")
  44. print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ]\n╔═══════════════════════════════╝")
  45. print("║-=¦ Running by: ( "..user.." )\n║")
  46. print("║-=¦ Current Profit: \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  47. print("║-=¦ MaxProfit: \t[ "..string.format("%.8f",mp).." /"..string.format("%.2f",mpp).."% ]")
  48. print("╚══════════════════════════════════════════════════\n\t\tBy: Rumble Dice Group")
  49. print("-------------------------------------------------------------------------------------------------------")
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement