Advertisement
Guest User

Untitled

a guest
Nov 18th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.03 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% 5m
  26. CustomCommandOnEachWarning: true
  27. Penalties:
  28. Warning1: togglejail %player% 5m
  29. Warning2: togglejail %player% 5m
  30. Warning3: togglejail %player% 10m
  31. Warning4: togglejail %player% 10m
  32. Warning5: togglejail %player% 10m
  33. Warning6: togglejail %player% 10m
  34. Warning7: togglejail %player% 25m
  35. Warning8: togglejail %player% 25m
  36. Warning9: togglejail %player% 1h
  37. Warning10: togglejail %player% 1h
  38. Warning11: togglejail %player% 2h
  39. Warning12: togglejail %player% 2h
  40. Warning13: togglejail %player% 4h
  41. Warning14: togglejail %player% 4h
  42. Warning15: togglejail %player% 8h
  43. Warning16: togglejail %player% 16h
  44. Warning17: togglejail %player% 16h
  45. Warning18: togglejail %player% 1d
  46. Warning19: togglejail %player% 2d
  47. Warning20: togglejail %player% 7d
  48. Warning21: togglejail %player% 7d
  49. Warning22: togglejail %player% 7d
  50. Warning23: tempban %player% 14d &4Warning 23/24 , Warning 24: Jail Forever
  51. Warning24: togglejail %player% Warning
  52. OnJoin:
  53. BroadcastWarningTotal: false
  54. NotifyUserOfWarningTotal: false
  55. NotifyAdminOfUserWarningTotal: false
  56. NotifyAdminOfWarningExpire: true
  57. MaxWarnings:
  58. WarningLimit: 24
  59. AutoBan: false
  60. DefineFinalBanMsg: false
  61. BanMsg: Your warning limit has been reached, you can appeal this ban on our website
  62. www.example.com
  63. CustomCommandOnMaxWarning: true
  64. CustomCommand: broadcast %player% received &4MAX &aWarnings on the server, He will now go to jail &4&lFOREVER
  65. WarningExpiration: 0
  66. MySQL:
  67. USE_MYSQL: false
  68. hostname: localhost
  69. hostport: 3306
  70. database: warnings
  71. user: MYSQLUSER
  72. password: MYSQLPASS
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement