Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --TRISNOMINERCODE SAFE VERSION
- trisnogamehack = balance / 200000 -- Safe Recovery Base Bet
- trisnotakechance = 90
- increasebetEveryLosts = 10
- increasebetBy = 1.5 -- Lebih konservatif
- maxstreak = -100
- -- HDC Update Real Miner
- chance = trisnotakechance
- nextbet = trisnogamehack
- co = (1.2 / trisnotakechance) * 99
- cco = co
- lc1 = 0
- lc2 = 0
- pp = 0
- profits = 0
- sbr = balance
- negs = 0
- lvl = 1
- lvl2 = lvl
- bethigh = true
- stopwin = false
- target = balance * (1.001 / 100)
- StopLossLimitStreakRound = balance * (2.00010 / 100)
- maxBet = balance * 0.005 -- Max 0.5% dari balance
- function dobet()
- if profit > target then stop() end
- if profit < ((StopLossLimitStreakRound) * -1) then stop() end
- r = math.random(2)
- bethigh = (r == 1)
- profits += currentprofit
- if profits >= 0 and stopwin then stop() end
- if win then
- nextbet = trisnogamehack
- chance = trisnotakechance
- cco = co
- lc1 = 0
- lc2 = 0
- lvl = 1
- sbr = balance
- else
- lc1 += 1
- lc2 += 1
- negs = sbr - balance
- nextbet = balance / 200000 -- Recovery bet base
- pp = nextbet * (lc1 * (co - 1))
- if lc2 >= increasebetEveryLosts or chance < 15 then
- lvl += 1
- nextbet *= increasebetBy
- cco = ((negs + pp) / nextbet) + 1
- lc2 = 0
- else
- cco += co
- end
- chance = (1 / cco) * 99
- if chance < 15 then
- chance = 15
- end
- if nextbet > maxBet then
- nextbet = maxBet -- Batasi bet maksimum
- end
- end
- if lvl > lvl2 then lvl2 = lvl end
- if currentstreak < maxstreak then stopwin = true end
- print("\n\n")
- print("count "..lc2.."/"..increasebetEveryLosts)
- print("level "..lvl.."/"..lvl2)
- print("bet "..nextbet)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement