Advertisement
Baliarta

OJO PANIC

Apr 10th, 2024
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. namesc = "HUGEBET x PANIC"
  2. basebet = balance/1e5
  3. nextbet = basebet
  4. h_chance = {90,91}
  5. p_chance = {36,37,5,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25}
  6. chindex = 1
  7. first_index = false
  8. modes = {"HUGEBET","PANIC_GREEN"}
  9. mode = modes[1]
  10. chance = h_chance[1]
  11. c_loses = 0
  12. c_wins = 0
  13. t_wins = 0
  14. maxprofit = 0
  15.  
  16. if (math.random(100)%2 == 0) then
  17. bethigh = false
  18. end
  19.  
  20. resetstats()
  21. resetseed()
  22. resetchart()
  23.  
  24. function dobet()
  25. print("-----------------------------------------------------------------------------")
  26. if (win) then
  27. t_wins += 1
  28. c_wins += 1
  29. c_loses = 0
  30. if (profit >= maxprofit) then
  31. maxprofit = profit
  32. mpf = maxprofit/(balance - maxprofit)*100
  33. mode = modes[1]
  34. c_wins = 0
  35. chance = h_chance[1]
  36. nextbet = basebet
  37. else
  38. if (mode == modes[1]) then
  39. mode = modes[2]
  40. chindex = math.random(1, #p_chance)
  41. chance = p_chance[chindex]
  42. cc = 99/(chance/2)
  43. if (cc <= 0) then cc = chance end
  44. nextbet = math.abs(partialprofit * 1.5)/cc
  45. if (nextbet <= basebet) then nextbet = basebet end
  46. end
  47. end
  48. if (mode == modes[1]) then
  49. nextbet = basebet
  50. chance = math.random(h_chance[1],h_chance[2])
  51. else
  52. if (t_wins%4 == 0) then
  53. nextbet = previousbet + (previousbet * (50/100))
  54. end
  55. if (c_wins == 1) then
  56. nextbet = previousbet - (previousbet * (50/100))
  57. elseif (c_wins == 2) then
  58. nextbet = previousbet + (previousbet * (100/100))
  59. elseif (c_wins == 3) then
  60. nextbet = previousbet - (previousbet * (40/100))
  61. c_wins = 0
  62. mode = modes[1]
  63. end
  64. end
  65. else
  66. c_loses = c_loses+1
  67. c_wins = 0
  68. mode = modes[2]
  69. chindex = math.random(1, #p_chance)
  70. chance = p_chance[chindex]
  71. if (c_loses == 1) then
  72. c_loses = 0
  73. bb = basebet/1.5
  74. if (bb <= basebet) then bb = basebet end
  75. nextbet = previousbet + (previousbet * (28.5/100))
  76. end
  77. end
  78. print("\t ══════════════════════════╗")
  79. print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ] ║\n╔═════════════════════════════════════╝")
  80. print("║-=¦ Mode: \t[ "..mode.." ]")
  81. print("║-=¦ Profit: \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  82. print("║-=¦ MaxProfit: \t[ "..string.format("%.2f",mpf).."% ]")
  83. print("╚══════════════════════════════════════════════════\n\t\tBy: Rumble Dice Group")
  84. print("-------------------------------------------------------------------------------------------------------")
  85. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement