Advertisement
Baliarta

Repeat risk

Jan 21st, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. namesc = "RISK REPEATS v4"
  2. startbal = balance
  3. t_profit = 0 --%
  4. basebet = balance/1e4
  5. nextbet = basebet
  6. iflose = math.random(45,75)
  7. repeats = 6
  8. start_chance = 11
  9. end_chance = 2
  10. chance = start_chance
  11. add_chance = false
  12. mpf = 0
  13. c_loses = 0
  14. bethigh = false
  15. dontresetwin = true
  16. lock = false
  17. status = "OFF"
  18. resetstats()
  19. resetseed()
  20. resetchart()
  21. balhigh = balance
  22. ballow = balance
  23. maxprof = 0
  24. w_drop = 0
  25. prevdropdown = 0
  26. dropdown = w_drop
  27. t_profit = (startbal * (t_profit/100)) - balance
  28. function dobet()
  29. print("------------------------------------------------------------------------------------------------------\n\n\n")
  30. if (win) then
  31. dontresetwin = true
  32. balhigh = balance
  33. w_drop -= previousbet * (99/chance)
  34. if (profit >= maxprof) then
  35. if (profit >= t_profit and t_profit > 0) then
  36. print("\nStop Target Profit..!")
  37. stop()
  38. end
  39. lock = false
  40. maxprof = profit
  41. mpf = maxprof/(balance-maxprof)*100
  42. w_drop = 0
  43. status = " OFF"
  44. resetseed()
  45. else
  46. lock = true
  47. status = "ON"
  48. nextbet = (basebet + previousbet/(chance)) * 1.5
  49. end
  50. if (dontresetwin) then
  51. if (not lock) then
  52. nextbet = basebet + (previousbet/(chance/1.5))
  53. chance = math.random(end_chance+1,start_chance)
  54. end
  55. else
  56. if (not lock) then
  57. chance = start_chance
  58. nextbet = basebet
  59. end
  60. end
  61. add_chance = false
  62. c_loses = 0
  63. resetseed()
  64. else
  65. ballow = balance
  66. c_loses += 1
  67. if (dontresetwin and not lock) then
  68. nextbet = basebet
  69. dontresetwin = false
  70. c_loses = 0
  71. elseif (c_loses%repeats == 0) then
  72. if (add_chance) then
  73. chance += 1
  74. else
  75. chance -= 1
  76. end
  77. iflose = math.random(45,75)
  78. nextbet = previousbet + (previousbet * (iflose/100))
  79. end
  80. if (chance < end_chance or chance > start_chance) then
  81. chance = math.floor(start_chance/2)
  82. add_chance = math.random(100)%2 == 0
  83. end
  84. end
  85. w_drop += previousbet
  86. if (w_drop >= prevdropdown) then
  87. dropdown = w_drop
  88. prevdropdown = dropdown
  89. end
  90. drop = balhigh - ballow
  91. dropp = drop/balhigh*100
  92. dropdownp = dropdown/startbal*100
  93. print("\t ══════════════════════════╗")
  94. print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ] ║\n╔═════════════════════════════════════╝")
  95. print("║-=¦ Lock: \t[ "..status.." ]")
  96. print("║-=¦ Profit: \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  97. print("║-=¦ MaxProfit: \t[ "..string.format("%.2f",mpf).."% ]")
  98. print("╚══════════════════════════════════════════════════\n\t\tBy: Rumble Dice Group")
  99. print("-------------------------------------------------------------------------------------------------------")
  100. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement