Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- baseBet = 0
- setbasebet = 0.01 --Set Basebet disini bukan diatas
- minPayout = 5.5
- maxPayout = 19.91
- incPayout = 1.001
- currBet = baseBet
- currPayout = maxPayout
- chance = 9
- maxLoss = balance --Kalo ciut mental setting maxlose disini (balance = sampai habis)
- startingBalance = balance
- rolls = 0
- targetp = balance*1.4 --Set target profit dalam presentase disini
- alarm = 1 --Set Alarm disini cukup 0 (off) atau 1 (on)
- trigeralarm = setbasebet * 7500
- function roundBal(num)
- return (10 ^ math.floor((math.log(num))/(math.log(10))))
- end
- if (baseBet == 0) then
- baseBet = setbasebet
- currBet = baseBet
- end
- nextbet = currBet
- function dobet()
- rolls = rolls + 1
- if (win) then
- currBet = baseBet
- currPayout = minPayout
- else
- currPayout = currPayout + incPayout
- if (currPayout > maxPayout) then
- bethigh = !bethigh
- currBet = currBet * (maxPayout / (minPayout - 1))
- currPayout = minPayout
- end
- end
- if (balance - startingBalance <= maxLoss*-1) then
- print("Max Loss Reached. Stopping")
- stop()
- end
- if balance > targetp then
- withdraw (balance, "Isi Alamat Doge Anda") -- Otomatis transfer balance ke alamat wallet
- print("Profit Tercapai")
- print("Ganti Akun Baru")
- stop()
- end
- if (rolls % 8 == 0) then
- resetseed()
- print("Starting Balance: " .. startingBalance .. " | Profit: " .. balance-startingBalance)
- end
- nextbet = currBet
- chance = 99/currPayout
- if (nextbet > trigeralarm and win and alarm == 1) then
- print("Ganti Akun")
- stop()
- end
- end
Add Comment
Please, Sign In to add comment