Advertisement
Hackdicecode

Untitled

May 15th, 2025
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. --TRISNOMINERCODE SAFE VERSION
  2. trisnogamehack = balance / 200000 -- Safe Recovery Base Bet
  3. trisnotakechance = 90
  4. increasebetEveryLosts = 10
  5. increasebetBy = 1.5 -- Lebih konservatif
  6. maxstreak = -100
  7.  
  8. -- HDC Update Real Miner
  9. chance = trisnotakechance
  10. nextbet = trisnogamehack
  11. co = (1.2 / trisnotakechance) * 99
  12. cco = co
  13. lc1 = 0
  14. lc2 = 0
  15. pp = 0
  16. profits = 0
  17. sbr = balance
  18. negs = 0
  19. lvl = 1
  20. lvl2 = lvl
  21. bethigh = true
  22. stopwin = false
  23. target = balance * (1.001 / 100)
  24. StopLossLimitStreakRound = balance * (2.00010 / 100)
  25. maxBet = balance * 0.005 -- Max 0.5% dari balance
  26.  
  27. function dobet()
  28. if profit > target then stop() end
  29. if profit < ((StopLossLimitStreakRound) * -1) then stop() end
  30.  
  31. r = math.random(2)
  32. bethigh = (r == 1)
  33.  
  34. profits += currentprofit
  35.  
  36. if profits >= 0 and stopwin then stop() end
  37.  
  38. if win then
  39. nextbet = trisnogamehack
  40. chance = trisnotakechance
  41. cco = co
  42. lc1 = 0
  43. lc2 = 0
  44. lvl = 1
  45. sbr = balance
  46. else
  47. lc1 += 1
  48. lc2 += 1
  49. negs = sbr - balance
  50. nextbet = balance / 200000 -- Recovery bet base
  51. pp = nextbet * (lc1 * (co - 1))
  52.  
  53. if lc2 >= increasebetEveryLosts or chance < 15 then
  54. lvl += 1
  55. nextbet *= increasebetBy
  56. cco = ((negs + pp) / nextbet) + 1
  57. lc2 = 0
  58. else
  59. cco += co
  60. end
  61.  
  62. chance = (1 / cco) * 99
  63. if chance < 15 then
  64. chance = 15
  65. end
  66.  
  67. if nextbet > maxBet then
  68. nextbet = maxBet -- Batasi bet maksimum
  69. end
  70. end
  71.  
  72. if lvl > lvl2 then lvl2 = lvl end
  73. if currentstreak < maxstreak then stopwin = true end
  74.  
  75. print("\n\n")
  76. print("count "..lc2.."/"..increasebetEveryLosts)
  77. print("level "..lvl.."/"..lvl2)
  78. print("bet "..nextbet)
  79. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement