alfarishi

Untitled

Oct 16th, 2020 (edited)
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.11 KB | None | 0 0
  1. baseBet         = 0
  2. setbasebet      = 0.001 --Set Basebet disini bukan diatas
  3. minPayout       = 1.9
  4. maxPayout       = 5.91
  5. incPayout       = 1.01
  6. currBet         = baseBet
  7. currBet2        = baseBet*10
  8. currPayout      = maxPayout
  9. chance          = 9
  10. maxLoss         = balance*0.1 --Kalo ciut mental setting maxlose disini (balance = sampai habis)
  11. startingBalance = balance
  12. rolls           = 0
  13. targetp         = balance*30 --Set target profit disini
  14. alarm           = 0 --Set Alarm disini cukup 0 (off) atau 1 (on)
  15. trigeralarm     = setbasebet * 7500
  16. roundprofit     = 0
  17. initbalance     = balance
  18. function roundBal(num)
  19.       return (8 ^ math.floor((math.log(num))/(math.log(8))))
  20. end
  21. if (baseBet == 0) then
  22.     baseBet = setbasebet
  23.     currBet = baseBet
  24. end
  25. nextbet = currBet
  26. function dobet()
  27.     rolls = rolls + 1
  28.   roundprofit += currentprofit
  29.    initbalance = balance+roundprofit
  30.    if roundprofit > 0 then
  31.        roundprofit = 0
  32.         currBet    = baseBet
  33.         currPayout = minPayout
  34.     else
  35.         currPayout = currPayout + incPayout
  36.         if (currPayout > maxPayout) then
  37.             bethigh    = !bethigh
  38.             currBet    = currBet * (maxPayout / (minPayout - 1))
  39.             currPayout = minPayout
  40.         end
  41.     end
  42.     if (balance - startingBalance <= maxLoss*-1) then
  43.         print("Max Loss Reached")
  44.         if roundprofit < 0 then
  45.             currBet2 = baseBet*10
  46.         currPayout = minPayout
  47.         else
  48.         currPayout = currPayout + incPayout
  49.         if (currPayout > maxPayout) then
  50.             bethigh    = !bethigh
  51.             currBet2   = currBet2 * (maxPayout / (minPayout - 1))
  52.             currPayout = minPayout
  53.         end
  54.     end
  55.             nextbet = currBet2
  56.            chance = 99/currPayout
  57.     end
  58.     if balance>targetp then stop()end
  59.     if (rolls % 8 == 0) then
  60.         print("Starting Balance: " .. startingBalance .. " | Profit: " .. balance-startingBalance)
  61.     end
  62.     nextbet = currBet
  63.     chance = 99/currPayout
  64.     if (nextbet > trigeralarm and win and alarm == 1) then
  65.         print("Ganti Akun")
  66.         stop()
  67.     end
  68.    
  69. end
Advertisement
Add Comment
Please, Sign In to add comment