Advertisement
Guest User

Untitled

a guest
Jan 16th, 2017
646
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 it 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 the data.yml
  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. # Change this if your server has a diffrent time that your users.
  16. # eg.: ServerTime: 16:43 | Your Time: 13:43 | TimeDiff has to be set to -3
  17. # You can check the server time with /systemPerfs
  18. TimeDiff: 0
  19.  
  20. # This commands will be disabled for muted players
  21. # A player woun't be able to bypass with eg "/minectaft:me"
  22. MuteCommands:
  23. - 'me'
  24. - 'say'
  25. - 'tell'
  26. - 'msg'
  27.  
  28. # The date-format which will be used for the %DATE% variable
  29. DateFormat: "dd.MM.yyyy-HH:mm"
  30.  
  31. # If you use extern REST-APIs they will have to respond in JSON
  32. # The given APIs will only be used for NAME -> UUID
  33. # For UUID -> NAME will either the official MojangAPI or the InternFetcher be used!
  34. # To check if you can use the intern fetcher do /systemPerfs and compare your uuid
  35. #   to the one you can see online on http://NamesMC.com
  36. #   if they are similar we recommend using the InternFetcher
  37. UUID-Fetcher:
  38.   # Disable for cracked servers
  39.   Enabled: false
  40.   Intern: false
  41.   REST-API:
  42.     URL: "https://api.mojang.com/users/profiles/minecraft/%NAME%?at=%TIMESTAMP%"
  43.     Key: "id"
  44.   BackUp-API:
  45.     URL: "https://us.mc-api.net/v3/uuid/%NAME%"
  46.     Key: "uuid"
  47.  
  48. # These are the commands that will be performed on warns
  49. # If you skip a number the command from before will be performed
  50. # You can also use not-AdvancedBan-Commands like 'broadcast' or 'clear %PLAYER%
  51. # Variables: %PLAYER%, %REASON%, %COUNT%
  52. WarnActions:
  53.   3: "kick %PLAYER% &cВы получили 3 выговор!"
  54.   4: "tempban %PLAYER% 30m &cВы получили 4 выговор!"
  55.   5: "tempban %PLAYER% 5h &cВы получили 5 выговор!"
  56.   6: "tempban %PLAYER% 7d &cВы получили 6 выговор!"
  57.   7: "tempban %PLAYER% 10d &cВы получили 7 выговор!"
  58.   10: "ban %PLAYER% &cВы получили максимальное количество выговоров!"
  59.  
  60. # Here you can create permission-nodes for max-punishment-duration.
  61. # The permission "ab.tempban.dur.1" would allow the player to ban max. for 600sec = 10min
  62. # The permission "ab.tempwarn.dur.2" would allow the player to warn max. for 3600sec = 1h
  63. # You can only create up to 10 perms. The perms can be overridden with "ab.COMMAND.dur.max"
  64. TempPerms:
  65.   1: 600
  66.   2: 3600
  67.   3: 43200
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement