Advertisement
Baliarta

RANDOM 4,20,40,60

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