Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.93 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | Essentials (Global) | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # A color code between 0-9 or a-f. Set to 'none' to disable.
  8. ops-name-color: ''
  9.  
  10. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  11. nickname-prefix: ''
  12.  
  13. # The maximum length allowed in nicknames. The nickname prefix is included in this.
  14. max-nick-length: 20
  15.  
  16. # A list of phrases that cannot be used in nicknames. You can include regular expressions here.
  17. # Users with essentials.nick.blacklist.bypass will be able to bypass this filter.
  18. nick-blacklist:
  19. #- Notch
  20. #- '^Dinnerbone'
  21.  
  22. # When this option is enabled, nickname length checking will exclude color codes in player names.
  23. # ie: "&6Notch" has 7 characters (2 are part of a color code), a length of 5 is used when this option is set to true
  24. ignore-colors-in-max-nick-length: false
  25.  
  26. # When this option is enabled, display names for hidden users will not be shown. This prevents players from being
  27. # able to see that they are online while vanished.
  28. hide-displayname-in-vanish: true
  29.  
  30. # Disable this if you have any other plugin, that modifies the displayname of a user.
  31. change-displayname: true
  32.  
  33. # When this option is enabled, the (tab) player list will be updated with the displayname.
  34. # The value of change-displayname (above) has to be true.
  35. #change-playerlist: true
  36.  
  37. # When EssentialsChat.jar isn't used, force essentials to add the prefix and suffix from permission plugins to displayname.
  38. # This setting is ignored if EssentialsChat.jar is used, and defaults to 'true'.
  39. # The value of change-displayname (above) has to be true.
  40. # Do not edit this setting unless you know what you are doing!
  41. #add-prefix-suffix: false
  42.  
  43. # When this option is enabled, player prefixes will be shown in the playerlist.
  44. # This feature only works for Minecraft version 1.8 and higher.
  45. # This value of change-playerlist has to be true
  46. #add-prefix-in-playerlist: true
  47.  
  48. # When this option is enabled, player suffixes will be shown in the playerlist.
  49. # This feature only works for Minecraft version 1.8 and higher.
  50. # This value of change-playerlist has to be true
  51. #add-suffix-in-playerlist: true
  52.  
  53. # If the teleport destination is unsafe, should players be teleported to the nearest safe location?
  54. # If this is set to true, Essentials will attempt to teleport players close to the intended destination.
  55. # If this is set to false, attempted teleports to unsafe locations will be cancelled with a warning.
  56. teleport-safety: true
  57.  
  58. # This forcefully disables teleport safety checks without a warning if attempting to teleport to unsafe locations.
  59. # teleport-safety and this option need to be set to true to force teleportation to dangerous locations.
  60. force-disable-teleport-safety: false
  61.  
  62. # The delay, in seconds, required between /home, /tp, etc.
  63. teleport-cooldown: 7
  64.  
  65. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport is cancelled.
  66. teleport-delay: 0
  67.  
  68. # The delay, in seconds, a player can't be attacked by other players after they have beeten telepord by a command.
  69. # This will also prevent the player attacking other players.
  70. teleport-invulnerability: 4
  71.  
  72. # Whether to make all teleportations go to the center of the block; where the x and z coordinates decimal become .5
  73. teleport-to-center: true
  74.  
  75. # The delay, in seconds, required between /heal or /feed attempts.
  76. heal-cooldown: 60
  77.  
  78. # Near Radius
  79. # The default radius with /near
  80. # Used to use chat radius but we are going to make it separate.
  81. near-radius: 200
  82.  
  83. # What to prevent from /item and /give.
  84. # e.g item-spawn-blacklist: 10,11,46
  85. item-spawn-blacklist:
  86.  
  87. # Set this to true if you want permission based item spawn rules.
  88. # Note: The blacklist above will be ignored then.
  89. # Example permissions (these go in your permissions manager):
  90. # - essentials.itemspawn.item-all
  91. # - essentials.itemspawn.item-[itemname]
  92. # - essentials.itemspawn.item-[itemid]
  93. # - essentials.give.item-all
  94. # - essentials.give.item-[itemname]
  95. # - essentials.give.item-[itemid]
  96. # - essentials.unlimited.item-all
  97. # - essentials.unlimited.item-[itemname]
  98. # - essentials.unlimited.item-[itemid]
  99. # - essentials.unlimited.item-bucket # Unlimited liquid placing
  100. #
  101. # For more information, visit http://wiki.ess3.net/wiki/Command_Reference/ICheat#Item.2FGive
  102. permission-based-item-spawn: false
  103.  
  104. # Mob limit on the /spawnmob command per execution.
  105. spawnmob-limit: 10
  106.  
  107. # Shall we notify users when using /lightning?
  108. warn-on-smite: true
  109.  
  110. # Shall we drop items instead of adding to inventory if the target inventory is full?
  111. drop-items-if-full: false
  112.  
  113. # Essentials Mail Notification
  114. # Should we notify players if they have no new mail?
  115. notify-no-new-mail: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement