Advertisement
Baliarta

Sc semi wager

Jan 22nd, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.37 KB | None | 0 0
  1. divisor = 1e4
  2. minbet = 1e-8
  3. basebet = balance/divisor
  4. nextbet = basebet
  5. chance = 80
  6. loses = 0
  7. count_ch = 0
  8. x = 10
  9. ch = 1
  10. sch = 2
  11. loss = 0
  12. maxprofit = 0
  13. stop_profit = 1050--%
  14. target_stop_profit = (balance * (stop_profit/100))
  15. resetstats()
  16. function dobet()
  17. bethigh = math.random(5) > 2
  18. if (win) then
  19. loses = 0
  20. x = 10
  21. count_ch = 0
  22. if (luck and chance <= 25) then
  23. luck = false
  24. chance = math.random(1,25)
  25. loss = 0
  26. ch = 1
  27. sch = 1
  28. nextbet = previousbet
  29. else
  30. basebet = balance/divisor
  31. nextbet = basebet
  32. chance = 80
  33. end
  34. if (profit > maxprofit) then
  35. maxprofit = profit
  36. end
  37. if (profit >= target_stop_profit and stop_profit > 0) then
  38. print("\nStop Target Profit..!")
  39. stop()
  40. end
  41. else
  42. loss += previousbet
  43. loses += 1
  44. if (loses == 1) then
  45. if (chance == 80) then
  46. luck = true
  47. chance = ch
  48. if (ch >= 25) then
  49. ch = sch
  50. if (sch == 25) then
  51. sch = math.random(1,25)
  52. else
  53. sch += 1
  54. end
  55. else
  56. if (count_ch%2 == 0 and count_ch > 0) then
  57. ch += 1
  58. else
  59. count_ch += 1
  60. end
  61. end
  62. x = 10
  63. if (math.random(30) > 15) then
  64. x = math.random(30,50)
  65. end
  66. nextbet = (loss + (loss * (x/100)))/((99/chance)-1)
  67. if (nextbet <= minbet) then nextbet = minbet end
  68. else
  69. luck = false
  70. nextbet = basebet
  71. chance = 80
  72. loses = 0
  73. end
  74. else
  75. luck = false
  76. nextbet = basebet
  77. chance = 80
  78. loses = 0
  79. end
  80. end
  81. print( "---------------------------------------------------=---------------------------------------------------\n\n\n")
  82. print("\t ═══════════════════╗")
  83. --print(" >_ SCRIPT [ ¤ "..namesc.." ¤ ] ║\n╔══════════════════════════════╝")
  84. --print("║-=¦ Running by: ( "..user.." )")
  85. print("║-=¦ Target Profit: \t[ "..stop_profit.."% ]")
  86. print("║-=¦ Profit: \t[ "..string.format("%.2f",profit/(balance-profit)*100).."% ]")
  87. print("║-=¦ MaxProfit: \t[ "..string.format("%.2f",maxprofit/(balance-maxprofit)*100).."% ]")
  88. print("╚══════════════════════════════════════════════════\n\t\tBy: Rumble Dice Group")
  89. print("-------------------------------------------------------------------------------------------------------")
  90. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement