Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --== TRISNO MINER MASTER SCRIPT (Silent Mode) ==--
- --== Konfigurasi Strategi ==--
- trisnogamehack = balance / 10000
- trisnotakechance = 90
- increasebetBy = 2
- increasebetEveryLosts = 15
- maxstreak = -100
- --== Pengamanan ==--
- MaxChanceLimit = 90
- MinChanceLimit = 15
- MaxBetPercent = 0.02
- MaxLevel = 6
- MaxLossInRow = 25
- --== Variabel Runtime ==--
- chance = trisnotakechance
- nextbet = trisnogamehack
- co = (1.2 / trisnotakechance) * 99
- cco = co
- lc1, lc2 = 0, 0
- pp, profits = 0, 0
- sbr, negs = balance, 0
- lvl, lvl2 = 1, 1
- bethigh = true
- stopwin = false
- target = balance * (2.001 / 100)
- StopLossLimitStreakRound= balance * (10.00010 / 100)
- --== Fungsi Taruhan ==--
- function dobet()
- if profit > target then stop() end
- if profit < -StopLossLimitStreakRound then stop() end
- bethigh = math.random(0, 1) == 1
- profits += currentprofit
- if win then
- nextbet = trisnogamehack
- chance = trisnotakechance
- cco = co
- lc1, lc2 = 0, 0
- lvl = 1
- sbr = balance
- else
- lc1 += 1
- lc2 += 1
- negs = sbr - balance
- pp = trisnogamehack * (lc1 * (co - 1))
- if lc1 > MaxLossInRow or lvl > MaxLevel then stop() end
- if lc2 >= increasebetEveryLosts or chance < MinChanceLimit then
- lvl += 1
- nextbet *= increasebetBy
- cco = ((negs + pp) / nextbet) + 1
- lc2 = 0
- else
- cco += co
- end
- chance = (1 / cco) * 99
- if chance < MinChanceLimit then
- chance = MinChanceLimit
- nextbet = previousbet * 1.1
- elseif chance > MaxChanceLimit then
- chance = MaxChanceLimit
- end
- local maxBetAllowed = balance * MaxBetPercent
- if nextbet > maxBetAllowed then
- nextbet = maxBetAllowed
- end
- end
- if currentstreak < maxstreak then
- stopwin = true
- end
- if lvl > lvl2 then
- lvl2 = lvl
- end
- end
Add Comment
Please, Sign In to add comment