Advertisement
Guest User

<none>

a guest
Oct 21st, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # AdvancedBan v2 - Coded by Leoko
  2. # For each setting, there is a small description.
  3. # Please read each description carefully before changing anything.
  4. # For more information visit: https://www.spigotmc.org/resources/advancedban.8695/
  5. # Do you want your own Plugin or Website? Check out our Dev-Page: http://dev.skamps.eu
  6.  
  7. # If set to false all bans will be saved locally in a HSQLDB-Database
  8. UseMySQL: false
  9.  
  10. # Set to false if you want to have only short messages in the console
  11. # On startup and on the shutdown.
  12. DetailedEnableMessage: true
  13. DetailedDisableMessage: true
  14.  
  15. # This will be the default reason to be displayed if none is given
  16. DefaultReason: "none"
  17.  
  18. # Change this if your server has a different time that your users.
  19. # e.g.: ServerTime: 16:43 | Your Time: 13:43 | TimeDiff has to be set to -3
  20. # You can check the server time with /systemPrefs
  21. TimeDiff: 0
  22.  
  23. # This commands will be disabled for muted players
  24. # A player wouldn't be able to bypass with eg "/minecraft:me"
  25. MuteCommands:
  26. - 'me'
  27. - 'say'
  28. - 'action'
  29. - 'eaction'
  30. - 'describe'
  31. - 'edescribe'
  32. - 'eme'
  33. - 'w'
  34. - 'm'
  35. - 'pm'
  36. - 'whisper'
  37. - 'ewhisper'
  38. - 'emsg'
  39. - 'msg'
  40. - 'etell'
  41. - 'tell'
  42. - 'er'
  43. - 'r'
  44. - 'reply'
  45. - 'ereply'
  46. - 'ac'
  47. - 'eac'
  48. - 'amsg'
  49. - 'eamsg'
  50. - 'ehelpop'
  51.  
  52. # These players will not be able to get punished in any way
  53. # this also works if the player is offline
  54. ExemptPlayers:
  55. - 'Leoko'
  56. - 'md5'
  57. - 'dutchy1001'
  58. - 'ItzSomebody'
  59.  
  60. # The date-format which will be used for the %DATE% variable
  61. DateFormat: "dd.MM.yyyy-HH:mm"
  62.  
  63. # This is useful for bungeecord servers or server with permission systems which do not support *-Perms
  64. # So if you enable this you can use ab.all instead of ab.* or ab.ban.all instead of ab.ban.*
  65. # This does not work with negative permissions! e.g. -ab.all would not block all commands for that user.
  66. EnableAllPermissionNodes: false
  67.  
  68. # If you use external REST-APIs they will have to respond in JSON
  69. # The given APIs will only be used for NAME -> UUID
  70. # For UUID -> NAME will either use the official MojangAPI or the InternFetcher
  71. # To check if you can use the intern fetcher do /systemPerfs and compare your uuid
  72. #   to the one you can see online on http://NamesMC.com
  73. #   if they are similar we recommend using the InternFetcher
  74. UUID-Fetcher:
  75.   # If dynamic it set to true it will override the 'enabled' and 'intern' settings
  76.   # and automatically detect the best possible uuid fetcher settings for your server.
  77.   # Our recommendation: don't set dynamic to false if you don't have any problems.
  78.   Dynamic: true
  79.   Enabled: true
  80.   Intern: false
  81.   REST-API:
  82.     URL: "https://api.mojang.com/users/profiles/minecraft/%NAME%?at=%TIMESTAMP%"
  83.     Key: "id"
  84.   BackUp-API:
  85.     URL: "https://us.mc-api.net/v3/uuid/%NAME%"
  86.     Key: "uuid"
  87.  
  88. # These are the commands that will be performed on warns
  89. # If you skip a number the command from before will be performed
  90. # You can also use non-AdvancedBan-Commands like 'broadcast' or 'clear %PLAYER%
  91. # Variables: %PLAYER%, %REASON%, %COUNT%
  92. WarnActions:
  93.   3: "kick %PLAYER% &c&oYou have received your 3rd warning!"
  94.   4: "tempban %PLAYER% 30m &c&oYou have received your 4th warning!"
  95.   5: "tempban %PLAYER% 5h &c&oYou have received your 5th warning!"
  96.   6: "tempban %PLAYER% 7d &c&oYou have received your 6th warning!"
  97.   7: "tempban %PLAYER% 1mo &c&oYou have received your %COUNT%th warning!"
  98.   10: "ban %PLAYER% &c&oYou have received your 10th warning!"
  99.  
  100. # Here you can create permission-nodes for max-punishment-duration.
  101. # The permission "ab.tempban.dur.1" would allow the player to ban max. for 600sec = 10min
  102. # The permission "ab.tempwarn.dur.2" would allow the player to warn max. for 3600sec = 1h
  103. # You can only create up to 10 perms. The perms can be overridden with "ab.COMMAND.dur.max"
  104. TempPerms:
  105.   1: 600
  106.   2: 3600
  107.   3: 43200
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement