Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. # OnWarn:
  2. # Broadcast - Broadcast when a warning is issued
  3. # KickOnWarning - Kick a user when a warning is issued
  4. # CustomCommandOnWarning - Execute a custom command everytime a warning is issued.
  5. # CustomCommandOnEachWarning - Execute a different command for each warning.
  6. # Penalties:
  7. # Warning1: <custom command> _ <second custom command>
  8. # Warning2: <custom command>
  9. # OnJoin:
  10. # BroadcastWarningTotal - Broadcast how many warnings a user has upon joining
  11. # NotifyUserOfWarningTotal - Notify a user of how many warnings they have upon joining
  12. # NotifyAdminOfUserWarningTotal - Notify an admin of how many warnings a user has upon joining
  13. # NotifyAdminOfWarningExpire - Notify admin if a users warnings have expired upon joining
  14. # MaxWarnings:
  15. # WarningLimit - Specify a users maximum allowed warnings
  16. # AutoBan - Ban user upon exceeding the warning limit
  17. # DefineFinalBanMsg - Define the players ban message (This will be displayed when a banned user tries to rejoin, if NOT set their last warning is shown instead)
  18. # CustomCommandOnMaxWarning - Execute custom command on final warning
  19. # WarningExpiration - Define total number of DAYS before a newly set warning expires, if set to '0' warnings will not expire
  20. # USE_MYSQL - Whether to use MySQL instead of SQLite
  21. OnWarn:
  22. Broadcast: true
  23. KickOnWarning: false
  24. CustomCommandOnWarning: false
  25. CustomCommand: jail %player% jail1 5m
  26. CustomCommandOnEachWarning: true
  27. Penalties:
  28. Warning1: none
  29. Warning2: none
  30. OnJoin:
  31. BroadcastWarningTotal: true
  32. NotifyUserOfWarningTotal: true
  33. NotifyAdminOfUserWarningTotal: false
  34. NotifyAdminOfWarningExpire: true
  35. MaxWarnings:
  36. WarningLimit: 3
  37. AutoBan: true
  38. DefineFinalBanMsg: true
  39. BanMsg: Your warning limit has been reached, you can appeal this ban on our website - http://pixelacres.net/forums
  40. CustomCommandOnMaxWarning: false
  41. CustomCommand: broadcast Goodbye %player%
  42. WarningExpiration: 0
  43. MySQL:
  44. USE_MYSQL: false
  45. hostname: [removed for paste]
  46. hostport: [removed for paste]
  47. database: [removed for paste]
  48. user: [removed for paste]
  49. password: [removed for paste]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement