Builder4Life

essentials config

Oct 14th, 2022
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 47.72 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | Notes | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # This is the config file for EssentialsX.
  8. # This config was generated for version 2.19.0-dev+232-b84207f.
  9.  
  10. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
  11. # If you receive an error when Essentials loads, ensure that:
  12. # - No tabs are present: YAML only allows spaces
  13. # - Indents are correct: YAML hierarchy is based entirely on indentation
  14. # - You have "escaped" all apostrophes in your text: If you want to write "don't", for example, write "don''t" instead (note the doubled apostrophe)
  15. # - Text with symbols is enclosed in single or double quotation marks
  16.  
  17. # If you need help, you can join the EssentialsX community: https://essentialsx.net/community.html
  18.  
  19. ############################################################
  20. # +------------------------------------------------------+ #
  21. # | Essentials (Global) | #
  22. # +------------------------------------------------------+ #
  23. ############################################################
  24.  
  25. # A color code between 0-9 or a-f. Set to 'none' to disable.
  26. # In 1.16+ you can use hex color codes here as well. (For example, #613e1d is brown).
  27. ops-name-color: ''
  28.  
  29. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  30. nickname-prefix: ''
  31.  
  32. # The maximum length allowed in nicknames. The nickname prefix is included in this.
  33. max-nick-length: 15
  34.  
  35. # A list of phrases that cannot be used in nicknames. You can include regular expressions here.
  36. # Users with essentials.nick.blacklist.bypass will be able to bypass this filter.
  37. nick-blacklist:
  38. #- Notch
  39. #- '^Dinnerbone'
  40.  
  41. # When this option is enabled, nickname length checking will exclude color codes in player names.
  42. # 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
  43. ignore-colors-in-max-nick-length: true
  44.  
  45. # When this option is enabled, display names for hidden users will not be shown. This prevents players from being
  46. # able to see that they are online while vanished.
  47. hide-displayname-in-vanish: true
  48.  
  49. # Disable this if you have any other plugin, that modifies the displayname of a user.
  50. change-displayname: true
  51.  
  52. # When this option is enabled, the (tab) player list will be updated with the displayname.
  53. # The value of change-displayname (above) has to be true.
  54. #change-playerlist: true
  55.  
  56. # When EssentialsChat.jar isn't used, force essentials to add the prefix and suffix from permission plugins to displayname.
  57. # This setting is ignored if EssentialsChat.jar is used, and defaults to 'true'.
  58. # The value of change-displayname (above) has to be true.
  59. # Do not edit this setting unless you know what you are doing!
  60. #add-prefix-suffix: false
  61.  
  62. # When this option is enabled, player prefixes will be shown in the playerlist.
  63. # This feature only works for Minecraft version 1.8 and higher.
  64. # This value of change-playerlist has to be true
  65. #add-prefix-in-playerlist: true
  66.  
  67. # When this option is enabled, player suffixes will be shown in the playerlist.
  68. # This feature only works for Minecraft version 1.8 and higher.
  69. # This value of change-playerlist has to be true
  70. #add-suffix-in-playerlist: true
  71.  
  72. # If the teleport destination is unsafe, should players be teleported to the nearest safe location?
  73. # If this is set to true, Essentials will attempt to teleport players close to the intended destination.
  74. # If this is set to false, attempted teleports to unsafe locations will be cancelled with a warning.
  75. teleport-safety: true
  76.  
  77. # This forcefully disables teleport safety checks without a warning if attempting to teleport to unsafe locations.
  78. # teleport-safety and this option need to be set to true to force teleportation to dangerous locations.
  79. force-disable-teleport-safety: false
  80.  
  81. # If a player is teleporting to an unsafe location in creative, adventure, or god mode; they will not be teleported to a
  82. # safe location. If you'd like players to be teleported to a safe location all of the time, set this option to true.
  83. force-safe-teleport-location: false
  84.  
  85. # If a player has any passengers, the teleport will fail. Should their passengers be dismounted before they are teleported?
  86. # If this is set to true, Essentials will dismount the player's passengers before teleporting.
  87. # If this is set to false, attempted teleports will be canceled with a warning.
  88. teleport-passenger-dismount: true
  89.  
  90. # The delay, in seconds, required between /home, /tp, etc.
  91. teleport-cooldown: 0
  92.  
  93. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport is cancelled.
  94. teleport-delay: 0
  95.  
  96. # The delay, in seconds, a player can't be attacked by other players after they have been teleported by a command.
  97. # This will also prevent the player attacking other players.
  98. teleport-invulnerability: 4
  99.  
  100. # Whether to make all teleportations go to the center of the block; where the x and z coordinates decimal become .5
  101. teleport-to-center: true
  102.  
  103. # The delay, in seconds, required between /heal or /feed attempts.
  104. heal-cooldown: 60
  105.  
  106. # Do you want to remove potion effects when healing a player?
  107. remove-effects-on-heal: true
  108.  
  109. # Near Radius
  110. # The default radius with /near
  111. # Used to use chat radius but we are going to make it separate.
  112. near-radius: 200
  113.  
  114. # What to prevent from /item and /give.
  115. # e.g item-spawn-blacklist: 10,11,46
  116. item-spawn-blacklist:
  117.  
  118. # Set this to true if you want permission based item spawn rules.
  119. # Note: The blacklist above will be ignored then.
  120. # Example permissions (these go in your permissions manager):
  121. # - essentials.itemspawn.item-all
  122. # - essentials.itemspawn.item-[itemname]
  123. # - essentials.itemspawn.item-[itemid]
  124. # - essentials.give.item-all
  125. # - essentials.give.item-[itemname]
  126. # - essentials.give.item-[itemid]
  127. # - essentials.unlimited.item-all
  128. # - essentials.unlimited.item-[itemname]
  129. # - essentials.unlimited.item-[itemid]
  130. # - essentials.unlimited.item-bucket # Unlimited liquid placing
  131. #
  132. # For more information, visit http://wiki.ess3.net/wiki/Command_Reference/ICheat#Item.2FGive
  133. permission-based-item-spawn: false
  134.  
  135. # Mob limit on the /spawnmob command per execution.
  136. spawnmob-limit: 10
  137.  
  138. # Shall we notify users when using /lightning?
  139. warn-on-smite: true
  140.  
  141. # Shall we drop items instead of adding to inventory if the target inventory is full?
  142. drop-items-if-full: false
  143.  
  144. # Essentials Mail Notification
  145. # Should we notify players if they have no new mail?
  146. notify-no-new-mail: true
  147.  
  148. # Specifies the duration (in seconds) between each time a player is notified of mail they have.
  149. # Useful for servers with a lot of mail traffic.
  150. notify-player-of-mail-cooldown: 60
  151.  
  152. # The motd and rules are now configured in the files motd.txt and rules.txt.
  153.  
  154. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority.
  155. # Commands in this list, will tell Essentials to 'not give up' the command to other plugins.
  156. # In this state, which plugin 'wins' appears to be almost random.
  157. #
  158. # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias.
  159. # To force essentials to take 'god' alias 'god' to 'egod'.
  160. # See http://wiki.bukkit.org/Commands.yml#aliases for more information.
  161.  
  162. overridden-commands:
  163. # - god
  164. # - info
  165.  
  166. # Disabling commands here will prevent Essentials handling the command, this will not affect command conflicts.
  167. # You should not have to disable commands used in other plugins, they will automatically get priority.
  168. # See http://wiki.bukkit.org/Commands.yml#aliases to map commands to other plugins.
  169. disabled-commands:
  170. # - nick
  171. # - clear
  172.  
  173. # These commands will be shown to players with socialSpy enabled.
  174. # You can add commands from other plugins you may want to track or
  175. # remove commands that are used for something you dont want to spy on.
  176. # Set - '*' in order to listen on all possible commands.
  177. socialspy-commands:
  178. - msg
  179. - w
  180. - r
  181. - mail
  182. - m
  183. - t
  184. - whisper
  185. - emsg
  186. - tell
  187. - er
  188. - reply
  189. - ereply
  190. - email
  191. - action
  192. - describe
  193. - eme
  194. - eaction
  195. - edescribe
  196. - etell
  197. - ewhisper
  198. - pm
  199.  
  200. # Whether the private and public messages from muted players should appear in the social spy.
  201. # If so, they will be differentiated from those sent by normal players.
  202. socialspy-listen-muted-players: true
  203.  
  204. # Whether social spy should spy on private messages or just the commands from the list above.
  205. # If false, social spy will only monitor commands from the list above.
  206. socialspy-messages: true
  207.  
  208. # The following settings listen for when a player changes worlds.
  209. # If you use another plugin to control speed and flight, you should change these to false.
  210.  
  211. # When a player changes world, should EssentialsX reset their flight?
  212. # This will disable flight if the player does not have essentials.fly.
  213. world-change-fly-reset: true
  214.  
  215. # When a player changes world, should we reset their speed according to their permissions?
  216. # This resets the player's speed to the default if they don't have essentials.speed.
  217. # If the player doesn't have essentials.speed.bypass, this resets their speed to the maximum specified above.
  218. world-change-speed-reset: true
  219.  
  220. # Mute Commands
  221. # These commands will be disabled when a player is muted.
  222. # Use '*' to disable every command.
  223. # Essentials already disabled Essentials messaging commands by default.
  224. # It only cares about the root command, not args after that (it sees /f chat the same as /f)
  225. mute-commands:
  226. - f
  227. - kittycannon
  228. # - '*'
  229.  
  230. # If you do not wish to use a permission system, you can define a list of 'player perms' below.
  231. # This list has no effect if you are using a supported permissions system.
  232. # If you are using an unsupported permissions system, simply delete this section.
  233. # Whitelist the commands and permissions you wish to give players by default (everything else is op only).
  234. # These are the permissions without the "essentials." part.
  235. #
  236. # To enable this feature, please set use-bukkit-permissions to false.
  237. player-commands:
  238. - afk
  239. - afk.auto
  240. - back
  241. - back.ondeath
  242. - balance
  243. - balance.others
  244. - balancetop
  245. - build
  246. - chat.color
  247. - chat.format
  248. - chat.shout
  249. - chat.question
  250. - clearinventory
  251. - compass
  252. - depth
  253. - delhome
  254. - getpos
  255. - geoip.show
  256. - help
  257. - helpop
  258. - home
  259. - home.others
  260. - ignore
  261. - info
  262. - itemdb
  263. - kit
  264. - kits.tools
  265. - list
  266. - mail
  267. - mail.send
  268. - me
  269. - motd
  270. - msg
  271. - msg.color
  272. - nick
  273. - near
  274. - pay
  275. - ping
  276. - protect
  277. - r
  278. - rules
  279. - realname
  280. - seen
  281. - sell
  282. - sethome
  283. - setxmpp
  284. - signs.create.protection
  285. - signs.create.trade
  286. - signs.break.protection
  287. - signs.break.trade
  288. - signs.use.balance
  289. - signs.use.buy
  290. - signs.use.disposal
  291. - signs.use.enchant
  292. - signs.use.free
  293. - signs.use.gamemode
  294. - signs.use.heal
  295. - signs.use.info
  296. - signs.use.kit
  297. - signs.use.mail
  298. - signs.use.protection
  299. - signs.use.repair
  300. - signs.use.sell
  301. - signs.use.time
  302. - signs.use.trade
  303. - signs.use.warp
  304. - signs.use.weather
  305. - spawn
  306. - suicide
  307. - time
  308. - tpa
  309. - tpaccept
  310. - tpahere
  311. - tpdeny
  312. - warp
  313. - warp.list
  314. - world
  315. - worth
  316. - xmpp
  317.  
  318. # Use this option to force superperms-based permissions handler regardless of detected installed perms plugin.
  319. # This is useful if you want superperms-based permissions (with wildcards) for custom permissions plugins.
  320. # If you wish to use EssentialsX's built-in permissions using the `player-commands` section above, set this to false.
  321. # Default is true.
  322. use-bukkit-permissions: true
  323.  
  324. # When this option is enabled, one-time use kits (ie. delay < 0) will be
  325. # removed from the /kit list when a player can no longer use it
  326. skip-used-one-time-kits-from-kit-list: false
  327.  
  328. # When enabled, armor from kits will automatically be equipped as long as the player's armor slots are empty.
  329. kit-auto-equip: false
  330.  
  331. # Determines the functionality of the /createkit command.
  332. # If this is true, /createkit will give the user a link with the kit code.
  333. # If this is false, /createkit will add the kit to the kits.yml config file directly.
  334. # Default is false.
  335. pastebin-createkit: false
  336.  
  337. # Determines if /createkit will generate kits using NBT item serialization.
  338. # If this is true, /createkit will store items as NBT; otherwise, it will use Essentials' human-readable item format.
  339. # By using NBT serialization, /createkit can store items with complex metadata such as shulker boxes and weapons with custom attributes.
  340. # WARNING: This option only works on 1.15.2+ Paper servers, and it will bypass any custom serializers from other plugins such as Magic.
  341. # WARNING: When creating kits via /createkit with this option enabled, you will not be able to downgrade your server with these kit items.
  342. # This option only affects /createkit - you can still create kits by hand in `kits.yml` using Essentials' human-readable item format.
  343. # Default is false.
  344. use-nbt-serialization-in-createkit: false
  345.  
  346. # Essentials Sign Control
  347. # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
  348. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  349. # Essentials colored sign support will be enabled when any sign types are enabled.
  350. # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
  351.  
  352. enabledSigns:
  353. #- color
  354. #- balance
  355. #- buy
  356. #- sell
  357. #- trade
  358. #- free
  359. #- warp
  360. #- kit
  361. #- mail
  362. #- enchant
  363. #- gamemode
  364. #- heal
  365. #- info
  366. #- spawnmob
  367. #- repair
  368. #- time
  369. #- weather
  370. #- anvil
  371. #- cartography
  372. #- disposal
  373. #- grindstone
  374. #- loom
  375. #- smithing
  376. #- workbench
  377.  
  378. # How many times per second can Essentials signs be interacted with per player.
  379. # Values should be between 1-20, 20 being virtually no lag protection.
  380. # Lower numbers will reduce the possibility of lag, but may annoy players.
  381. sign-use-per-second: 4
  382.  
  383. # Allow item IDs on pre-existing signs on 1.13 and above.
  384. # You cannot use item IDs on new signs, but this will allow players to interact with signs that
  385. # were placed before 1.13.
  386. allow-old-id-signs: false
  387.  
  388. # List of sign names Essentials should not protect. This feature is especially useful when
  389. # another plugin provides a sign that EssentialsX provides, but Essentials overrides.
  390. # For example, if a plugin provides a [kit] sign, and you wish to use theirs instead of
  391. # Essentials's, then simply add kit below and Essentials will not protect it.
  392. #
  393. # See https://github.com/drtshock/Essentials/pull/699 for more information.
  394. unprotected-sign-names:
  395. #- kit
  396.  
  397. # Backup runs a custom batch/bash command at a specified interval.
  398. # The server will save the world before executing the backup command, and disable
  399. # saving during the backup to prevent world corruption or other conflicts.
  400. # Backups can also be triggered manually with /backup.
  401. backup:
  402. # Interval in minutes.
  403. interval: 30
  404. # If true, the backup task will run even if there are no players online.
  405. always-run: false
  406. # Unless you add a valid backup command or script here, this feature will be useless.
  407. # Use 'save-all' to simply force regular world saving without backup.
  408. # The example command below utilizes rdiff-backup: https://rdiff-backup.net/
  409. #command: 'rdiff-backup World1 backups/World1'
  410.  
  411. # Set this true to enable permission per warp.
  412. per-warp-permission: false
  413.  
  414. # Sort output of /list command by groups.
  415. # You can hide and merge the groups displayed in /list by defining the desired behaviour here.
  416. # Detailed instructions and examples can be found on the wiki: http://wiki.ess3.net/wiki/List
  417. list:
  418. # To merge groups, list the groups you wish to merge
  419. #Staff: owner admin moderator
  420. Admins: owner admin
  421. # To limit groups, set a max user limit
  422. #builder: 20
  423. # To hide groups, set the group as hidden
  424. #default: hidden
  425. # Uncomment the line below to simply list all players with no grouping
  426. #Players: '*'
  427.  
  428. # Displays real names in /list next to players who are using a nickname.
  429. real-names-on-list: false
  430.  
  431. # More output to the console.
  432. debug: false
  433.  
  434. # Set the locale for all messages.
  435. # If you don't set this, the default locale of the server will be used.
  436. # For example, to set language to English, set locale to en, to use the file "messages_en.properties".
  437. # Don't forget to remove the # in front of the line.
  438. # For more information, visit http://wiki.ess3.net/wiki/Locale
  439. #locale: en
  440.  
  441. # Turn off god mode when people leave the server.
  442. remove-god-on-disconnect: false
  443.  
  444. # Auto-AFK
  445. # After this timeout in seconds, the user will be set as AFK.
  446. # This feature requires the player to have essentials.afk.auto node.
  447. # Set to -1 for no timeout.
  448. auto-afk: 300
  449.  
  450. # Auto-AFK Kick
  451. # After this timeout in seconds, the user will be kicked from the server.
  452. # essentials.afk.kickexempt node overrides this feature.
  453. # Set to -1 for no timeout.
  454. auto-afk-kick: -1
  455.  
  456. # Set this to true, if you want to freeze the player, if the player is AFK.
  457. # Other players or monsters can't push the player out of AFK mode then.
  458. # This will also enable temporary god mode for the AFK player.
  459. # The player has to use the command /afk to leave the AFK mode.
  460. freeze-afk-players: false
  461.  
  462. # When the player is AFK, should he be able to pickup items?
  463. # Enable this, when you don't want people idling in mob traps.
  464. disable-item-pickup-while-afk: false
  465.  
  466. # This setting controls if a player is marked as active on interaction.
  467. # When this setting is false, the player would need to manually un-AFK using the /afk command.
  468. cancel-afk-on-interact: true
  469.  
  470. # Should we automatically remove afk status when a player moves?
  471. # Player will be removed from AFK on chat/command regardless of this setting.
  472. # Disable this to reduce server lag.
  473. cancel-afk-on-move: true
  474.  
  475. # Should we automatically remove afk status when a player sends a chat message?
  476. cancel-afk-on-chat: true
  477.  
  478. # Should AFK players be ignored when other players are trying to sleep?
  479. # When this setting is false, players won't be able to skip the night if some players are AFK.
  480. # Users with the permission node essentials.sleepingignored will always be ignored.
  481. sleep-ignores-afk-players: true
  482.  
  483. # Should vanished players be ignored when other players are trying to sleep?
  484. # When this setting is false, player's won't be able to skip the night if vanished players are not sleeping.
  485. # Users with the permission node essentials.sleepingignored will always be ignored.
  486. sleep-ignores-vanished-player: true
  487.  
  488. # Set the player's list name when they are AFK. This is none by default which specifies that Essentials
  489. # should not interfere with the AFK player's list name.
  490. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  491. afk-list-name: "none"
  492.  
  493. # When a player enters or exits AFK mode, should the AFK notification be broadcast
  494. # to the entire server, or just to the player?
  495. # When this setting is false, only the player will be notified upon changing their AFK state.
  496. broadcast-afk-message: true
  497.  
  498. # You can disable the death messages of Minecraft here.
  499. death-messages: true
  500.  
  501. # How should essentials handle players with the essentials.keepinv permission who have items with
  502. # curse of vanishing when they die?
  503. # You can set this to "keep" (to keep the item), "drop" (to drop the item), or "delete" (to delete the item).
  504. # Defaults to "keep"
  505. vanishing-items-policy: keep
  506.  
  507. # How should essentials handle players with the essentials.keepinv permission who have items with
  508. # curse of binding when they die?
  509. # You can set this to "keep" (to keep the item), "drop" (to drop the item), or "delete" (to delete the item).
  510. # Defaults to "keep"
  511. binding-items-policy: keep
  512.  
  513. # When players die, should they receive the coordinates they died at?
  514. send-info-after-death: false
  515.  
  516. # Should players with permissions be able to join and part silently?
  517. # You can control this with essentials.silentjoin and essentials.silentquit permissions if it is enabled.
  518. # In addition, people with essentials.silentjoin.vanish will be vanished on join.
  519. allow-silent-join-quit: false
  520.  
  521. # You can set custom join and quit messages here. Set this to "none" to use the default Minecraft message,
  522. # or set this to "" to hide the message entirely.
  523.  
  524. # Available placeholders:
  525. # {PLAYER} - The player's displayname.
  526. # {USERNAME} - The player's username.
  527. # {PREFIX} - The player's prefix.
  528. # {SUFFIX} - The player's suffix.
  529. # {ONLINE} - The number of players online.
  530. # {UNIQUE} - The number of unique players to join the server.
  531. # {UPTIME} - The amount of time the server has been online.
  532. custom-join-message: "&8[&a+&8] &7{PLAYER}"
  533. custom-quit-message: "&8[&c-&8] &7{PLAYER}"
  534.  
  535. # You can set a custom join message for users who join with a new username here.
  536. # This message will only be used if a user has joined before and have since changed their username.
  537. # This will be displayed INSTEAD OF custom-join-message, so if you intend to keep them similar, make sure they match.
  538. # Set this to "none" to use the the "custom-join-message" above for every join.
  539.  
  540. # Available placeholders:
  541. # {PLAYER} - The player's displayname.
  542. # {USERNAME} - The player's username.
  543. # {OLDUSERNAME} - The player's old username.
  544. # {PREFIX} - The player's prefix.
  545. # {SUFFIX} - The player's suffix.
  546. # {ONLINE} - The number of players online.
  547. # {UNIQUE} - The number of unique players to join the server.
  548. # {UPTIME} - The amount of time the server has been online.
  549. custom-new-username-message: "none"
  550.  
  551. # Should Essentials override the vanilla "Server Full" message with its own from the language file?
  552. # Set to false to keep the vanilla message.
  553. use-custom-server-full-message: true
  554.  
  555. # You can disable join and quit messages when the player count reaches a certain limit.
  556. # When the player count is below this number, join/quit messages will always be shown.
  557. # Set this to -1 to always show join and quit messages regardless of player count.
  558. hide-join-quit-messages-above: -1
  559.  
  560. # Add worlds to this list, if you want to automatically disable god mode there.
  561. no-god-in-worlds:
  562. # - world_nether
  563.  
  564. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands.
  565. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  566. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  567. # This does not affect the /home command, there is a separate toggle below for this.
  568. world-teleport-permissions: false
  569.  
  570. # The number of items given if the quantity parameter is left out in /item or /give.
  571. # If this number is below 1, the maximum stack size size is given. If over-sized stacks.
  572. # are not enabled, any number higher than the maximum stack size results in more than one stack.
  573. default-stack-size: -1
  574.  
  575. # Over-sized stacks are stacks that ignore the normal max stack size.
  576. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  577. # How many items should be in an over-sized stack?
  578. oversized-stacksize: 64
  579.  
  580. # Allow repair of enchanted weapons and armor.
  581. # If you set this to false, you can still allow it for certain players using the permission.
  582. # essentials.repair.enchanted
  583. repair-enchanted: true
  584.  
  585. # Allow 'unsafe' enchantments in kits and item spawning.
  586. # Warning: Mixing and overleveling some enchantments can cause issues with clients, servers and plugins.
  587. unsafe-enchantments: false
  588.  
  589. #Do you want Essentials to keep track of previous location for /back in the teleport listener?
  590. #If you set this to true any plugin that uses teleport will have the previous location registered.
  591. register-back-in-listener: false
  592.  
  593. #Delay to wait before people can cause attack damage after logging in.
  594. login-attack-delay: 5
  595.  
  596. #Set the max fly speed, values range from 0.1 to 1.0
  597. max-fly-speed: 0.8
  598.  
  599. #Set the max walk speed, values range from 0.1 to 1.0
  600. max-walk-speed: 0.8
  601.  
  602. #Set the maximum amount of mail that can be sent within a minute.
  603. mails-per-minute: 1000
  604.  
  605. # Set the maximum time /mute can be used for in seconds.
  606. # Set to -1 to disable, and essentials.mute.unlimited can be used to override.
  607. max-mute-time: -1
  608.  
  609. # Set the maximum time /tempban can be used for in seconds.
  610. # Set to -1 to disable, and essentials.tempban.unlimited can be used to override.
  611. max-tempban-time: -1
  612.  
  613. # Changes the default /reply functionality. This can be changed on a per-player basis using /rtoggle.
  614. # If true, /r goes to the person you messaged last, otherwise the first person that messaged you.
  615. # If false, /r goes to the last person that messaged you.
  616. last-message-reply-recipient: true
  617.  
  618. # If last-message-reply-recipient is enabled for a particular player,
  619. # this specifies the duration, in seconds, that would need to elapse for the
  620. # reply-recipient to update when receiving a message.
  621. # Default is 180 (3 minutes)
  622. last-message-reply-recipient-timeout: 180
  623.  
  624. # Changes the default /reply functionality.
  625. # If true, /reply will not check if the person you're replying to has vanished.
  626. # If false, players will not be able to /reply to players who they can no longer see due to vanish.
  627. last-message-reply-vanished: false
  628.  
  629. # Toggles whether or not left clicking mobs with a milk bucket turns them into a baby.
  630. milk-bucket-easter-egg: true
  631.  
  632. # Toggles whether or not the fly status message should be sent to players on join
  633. send-fly-enable-on-join: true
  634.  
  635. # Set to true to enable per-world permissions for setting time for individual worlds with essentials commands.
  636. # This applies to /time, /day, /eday, /night, /enight, /etime.
  637. # Give someone permission to teleport to a world with essentials.time.world.<worldname>.
  638. world-time-permissions: false
  639.  
  640. # Specify cooldown for both Essentials commands and external commands as well.
  641. # All commands do not start with a Forward Slash (/). Instead of /msg, write msg
  642. #
  643. # Wildcards are supported. E.g.
  644. # - '*i*': 50
  645. # adds a 50 second cooldown to all commands that include the letter i
  646. #
  647. # EssentialsX supports regex by starting the command with a caret ^
  648. # For example, to target commands starting with ban and not banip the following would be used:
  649. # '^ban([^ip])( .*)?': 60 # 60 seconds /ban cooldown.
  650. # Note: If you have a command that starts with ^, then you can escape it using backslash (\). e.g. \^command: 123
  651. command-cooldowns:
  652. # feed: 100 # 100 second cooldown on /feed command
  653. # '*': 5 # 5 Second cooldown on all commands
  654.  
  655. # Whether command cooldowns should be persistent past server shutdowns
  656. command-cooldown-persistence: true
  657.  
  658. # Whether NPC balances should be listed in balance ranking features such as /balancetop.
  659. # NPC balances can include features like factions from FactionsUUID plugin.
  660. npcs-in-balance-ranking: false
  661.  
  662. # Allow bulk buying and selling signs when the player is sneaking.
  663. # This is useful when a sign sells or buys one item at a time and the player wants to sell a bunch at once.
  664. allow-bulk-buy-sell: true
  665.  
  666. # Allow selling of items with custom names with the /sell command.
  667. # This may be useful to prevent players accidentally selling named items.
  668. allow-selling-named-items: false
  669.  
  670. # Delay for the MOTD display for players on join, in milliseconds.
  671. # This has no effect if the MOTD command or permission are disabled.
  672. delay-motd: 0
  673.  
  674. # A list of commands that should have their complementary confirm commands enabled by default.
  675. # This is empty by default, for the latest list of valid commands see the latest source config.yml.
  676. default-enabled-confirm-commands:
  677. #- pay
  678. #- clearinventory
  679.  
  680. # Where should Essentials teleport players when they are freed from jail?
  681. # You can set to "back" to have them teleported to where they were before they were jailed, "spawn" to have them
  682. # teleport to spawn, or "off" to not have them teleport.
  683. teleport-when-freed: back
  684.  
  685. # Whether or not jail time should only be counted while the user is online.
  686. # If true, a jailed player's time will only decrement when they are online.
  687. jail-online-time: false
  688.  
  689. # Set the timeout, in seconds for players to accept a tpa before the request is cancelled.
  690. # Set to 0 for no timeout.
  691. tpa-accept-cancellation: 120
  692.  
  693. # Allow players to set hats by clicking on their helmet slot.
  694. allow-direct-hat: true
  695.  
  696. # Allow in-game players to specify a world when running /broadcastworld.
  697. # If false, running /broadcastworld in-game will always send a message to the player's current world.
  698. # This doesn't affect running the command from the console, where a world is always required.
  699. allow-world-in-broadcastworld: true
  700.  
  701. # Consider water blocks as "safe," therefore allowing players to teleport
  702. # using commands such as /home or /spawn to a location that is occupied
  703. # by water blocks
  704. is-water-safe: false
  705.  
  706. # Should the usermap try to sanitise usernames before saving them?
  707. # You should only change this to false if you use Minecraft China.
  708. safe-usermap-names: true
  709.  
  710. # Should Essentials output logs when a command block executes a command?
  711. # Example: CommandBlock at <x>,<y>,<z> issued server command: /<command>
  712. log-command-block-commands: true
  713.  
  714. # Set the maximum speed for projectiles spawned with /fireball.
  715. max-projectile-speed: 8
  716.  
  717. # Should EssentialsX check for updates?
  718. # If set to true, EssentialsX will show notifications when a new version is available.
  719. # This uses the public GitHub API and no identifying information is sent or stored.
  720. update-check: true
  721.  
  722. ############################################################
  723. # +------------------------------------------------------+ #
  724. # | Homes | #
  725. # +------------------------------------------------------+ #
  726. ############################################################
  727.  
  728. # Allows people to set their bed during the day.
  729. # This setting has no effect in Minecraft 1.15+, as Minecraft will always allow the player to set their bed location during the day.
  730. update-bed-at-daytime: true
  731.  
  732. # Set to true to enable per-world permissions for using homes to teleport between worlds.
  733. # This applies to the /home command only.
  734. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  735. world-home-permissions: false
  736.  
  737. # Allow players to have multiple homes.
  738. # Players need essentials.sethome.multiple before they can have more than 1 home.
  739. # You can set the default number of multiple homes using the 'default' rank below.
  740. # To remove the home limit entirely, give people 'essentials.sethome.multiple.unlimited'.
  741. # To grant different home amounts to different people, you need to define a 'home-rank' below.
  742. # Create the 'home-rank' below, and give the matching permission: essentials.sethome.multiple.<home-rank>
  743. # For more information, visit http://wiki.ess3.net/wiki/Multihome
  744. sethome-multiple:
  745. default: 3
  746. vip: 5
  747. staff: 10
  748.  
  749. # In this example someone with 'essentials.sethome.multiple' and 'essentials.sethome.multiple.vip' will have 5 homes.
  750. # Remember, they MUST have both permission nodes in order to be able to set multiple homes.
  751.  
  752. # Controls whether players need the permission "essentials.home.compass" in order to point
  753. # the player's compass at their first home.
  754. #
  755. # Leaving this as false will retain Essentials' original behaviour, which is to always
  756. # change the compass' direction to point towards their first home.
  757. compass-towards-home-perm: false
  758.  
  759. # If no home is set, would you like to send the player to spawn?
  760. # If set to false, players will not be teleported when they run /home without setting a home first.
  761. spawn-if-no-home: true
  762.  
  763. # Should players be asked to provide confirmation for homes which they attempt to overwrite?
  764. confirm-home-overwrite: false
  765.  
  766. ############################################################
  767. # +------------------------------------------------------+ #
  768. # | Economy | #
  769. # +------------------------------------------------------+ #
  770. ############################################################
  771.  
  772. # For more information, visit http://wiki.ess3.net/wiki/Essentials_Economy
  773.  
  774. # You can control the values of items that are sold to the server by using the /setworth command.
  775.  
  776. # Defines the balance with which new players begin. Defaults to 0.
  777. starting-balance: 0
  778.  
  779. # Defines the cost to use the given commands PER USE.
  780. # Some commands like /repair have sub-costs, check the wiki for more information.
  781. command-costs:
  782. # /example costs $1000 PER USE
  783. #example: 1000
  784. # /kit tools costs $1500 PER USE
  785. #kit-tools: 1500
  786.  
  787. # Set this to a currency symbol you want to use.
  788. # Remember, if you want to use special characters in this document,
  789. # such as accented letters, you MUST save the file as UTF-8, not ANSI.
  790. currency-symbol: '$'
  791.  
  792. # Enable this to make the currency symbol appear at the end of the amount rather than at the start.
  793. # For example, the euro symbol typically appears after the current amount.
  794. currency-symbol-suffix: false
  795.  
  796. # Set the maximum amount of money a player can have.
  797. # The amount is always limited to 10 trillion because of the limitations of a java double.
  798. max-money: 10000000000000
  799.  
  800. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  801. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  802. min-money: -10000
  803.  
  804. # Enable this to log all interactions with trade/buy/sell signs and sell command.
  805. economy-log-enabled: false
  806.  
  807. # Enable this to also log all transactions from other plugins through Vault.
  808. # This can cause the economy log to fill up quickly so should only be enabled for testing purposes!
  809. economy-log-update-enabled: false
  810.  
  811. # Minimum acceptable amount to be used in /pay.
  812. minimum-pay-amount: 0.001
  813.  
  814. # Enable this to block users who try to /pay another user which ignore them.
  815. pay-excludes-ignore-list: false
  816.  
  817. # Whether or not users with a balance less than or equal to $0 should be shown in balance-top.
  818. # Setting to false will not show people with balances <= 0 in balance-top.
  819. # NOTE: After reloading the config, you must also run '/baltop force' for this to appear
  820. show-zero-baltop: true
  821.  
  822. # The format of currency, excluding symbols. See currency-symbol-format-locale for symbol configuration.
  823. #
  824. # "#,##0.00" is how the majority of countries display currency.
  825. #currency-format: "#,##0.00"
  826.  
  827. # Format currency symbols. Some locales use , and . interchangeably.
  828. # Some formats do not display properly in-game due to faulty Minecraft font rendering.
  829. #
  830. # For 1.234,50 use de-DE
  831. # For 1,234.50 use en-US
  832. # For 1'234,50 use fr-ch
  833. #currency-symbol-format-locale: en-US
  834.  
  835. ############################################################
  836. # +------------------------------------------------------+ #
  837. # | Help | #
  838. # +------------------------------------------------------+ #
  839. ############################################################
  840.  
  841. # Show other plugins commands in help.
  842. non-ess-in-help: true
  843.  
  844. # Hide plugins which do not give a permission.
  845. # You can override a true value here for a single plugin by adding a permission to a user/group.
  846. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
  847. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
  848. hide-permissionless-help: true
  849.  
  850. ############################################################
  851. # +------------------------------------------------------+ #
  852. # | EssentialsX Chat | #
  853. # +------------------------------------------------------+ #
  854. ############################################################
  855.  
  856. # You need to install EssentialsX Chat for this section to work.
  857. # See https://essentialsx.net/wiki/Module-Breakdown.html for more information.
  858.  
  859. chat:
  860.  
  861. # If EssentialsX Chat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  862. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  863. # Users with essentials.chat.shout can override this by prefixing their message with an exclamation mark (!)
  864. # Users with essentials.chat.question can override this by prefixing their message with a question mark (?)
  865. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section.
  866. radius: 0
  867.  
  868. # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  869. # Or you can give a group specific chat format, to give some extra variation.
  870. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  871. # Note: Using the {PREFIX} and {SUFFIX} placeholders along with {DISPLAYNAME} may cause double prefixes/suffixes to be shown in chat unless add-prefix-suffix is uncommented and set to false.
  872.  
  873. # Available placeholders:
  874. # {MESSAGE} - The content of the chat message.
  875. # {USERNAME} - The sender's username.
  876. # {DISPLAYNAME} - The sender's display name.
  877. # {NICKNAME} - The sender's Essentials nickname. If the sender has no nickname, the username is shown.
  878. # {PREFIX} - The sender's prefix, supplied by a permissions plugin.
  879. # {SUFFIX} - The sender's suffix, supplied by a permissions plugin.
  880. # {GROUP} - The sender's primary group name, supplied by a permissions plugin.
  881. # {WORLD} - The world alias of the sender's current world. See the world-aliases section below for details.
  882. # {WORLDNAME} - The full name of the sender's current world.
  883. # {SHORTWORLDNAME} - The first character of the sender's current world.
  884. # {TEAMNAME} - The sender's scoreboard team name.
  885. # {TEAMPREFIX} - The sender's scoreboard team prefix.
  886. # {TEAMSUFFIX} - The sender's scoreboard team suffix.
  887.  
  888. format: '{DISPLAYNAME} &8ยป &r{MESSAGE}'
  889. #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'
  890. #format: '&7{PREFIX}&r {DISPLAYNAME}&r &7{SUFFIX}&r: {MESSAGE}'
  891.  
  892. group-formats:
  893. # default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  894. # admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'
  895.  
  896. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  897. # Note: Group names are case-sensitive so you must match them up with your permission plugin.
  898.  
  899. # You can use permissions to control whether players can use formatting codes in their chat messages.
  900. # See https://essentialsx.net/wiki/Color-Permissions.html for more information.
  901.  
  902. # World aliases allow you to replace the world name with something different in the chat format.
  903. # If you are using world aliases, make sure to remove the '#' at the start to allow the setting to be read.
  904. world-aliases:
  905. # plots: "&dP&r"
  906. # creative: "&eC&r"
  907.  
  908. ############################################################
  909. # +------------------------------------------------------+ #
  910. # | EssentialsX Protect | #
  911. # +------------------------------------------------------+ #
  912. ############################################################
  913.  
  914. # You need to install EssentialsX Protect for this section to work.
  915. # See https://essentialsx.net/wiki/Module-Breakdown.html for more information.
  916.  
  917. protect:
  918.  
  919. # General physics/behavior modifications. Set these to true to disable behaviours.
  920. prevent:
  921. lava-flow: false
  922. water-flow: false
  923. water-bucket-flow: false
  924. fire-spread: true
  925. lava-fire-spread: true
  926. lava-itemdamage: false
  927. flint-fire: false
  928. lightning-fire-spread: true
  929. portal-creation: false
  930. tnt-explosion: false
  931. tnt-playerdamage: false
  932. tnt-itemdamage: false
  933. tnt-minecart-explosion: false
  934. tnt-minecart-playerdamage: false
  935. tnt-minecart-itemdamage: false
  936. fireball-explosion: false
  937. fireball-fire: false
  938. fireball-playerdamage: false
  939. fireball-itemdamage: false
  940. witherskull-explosion: false
  941. witherskull-playerdamage: false
  942. witherskull-itemdamage: false
  943. wither-spawnexplosion: false
  944. wither-blockreplace: false
  945. creeper-explosion: false
  946. creeper-playerdamage: false
  947. creeper-itemdamage: false
  948. creeper-blockdamage: false
  949. ender-crystal-explosion: false
  950. enderdragon-blockdamage: true
  951. enderman-pickup: false
  952. villager-death: false
  953. bed-explosion: false
  954. respawn-anchor-explosion: false
  955. # Monsters won't follow players.
  956. # permission essentials.protect.entitytarget.bypass disables this.
  957. entitytarget: false
  958. # Prevents zombies from breaking down doors
  959. zombie-door-break: false
  960. # Prevents Ravagers from stealing blocks
  961. ravager-thief: false
  962. # Prevents sheep from turning grass to dirt
  963. sheep-eat-grass: false
  964. # Prevent certain transformations.
  965. transformation:
  966. # Prevent creepers becoming charged when struck by lightning.
  967. charged-creeper: false
  968. # Prevent villagers becoming zombie villagers.
  969. zombie-villager: false
  970. # Prevent zombie villagers being cured.
  971. villager: false
  972. # Prevent villagers becoming witches when struck by lightning.
  973. witch: false
  974. # Prevent pigs becoming zombie pigmen when struck by lightning.
  975. zombie-pigman: false
  976. # Prevent zombies turning into drowneds, and husks turning into zombies.
  977. drowned: false
  978. # Prevent mooshrooms changing colour when struck by lightning.
  979. mooshroom: false
  980. # Prevent the spawning of creatures. If a creature is missing, you can add it following the format below.
  981. spawn:
  982. creeper: false
  983. skeleton: false
  984. spider: false
  985. giant: false
  986. zombie: false
  987. slime: false
  988. ghast: false
  989. pig_zombie: false
  990. enderman: false
  991. cave_spider: false
  992. silverfish: false
  993. blaze: false
  994. magma_cube: false
  995. ender_dragon: false
  996. pig: false
  997. sheep: false
  998. cow: false
  999. chicken: false
  1000. squid: false
  1001. wolf: false
  1002. mushroom_cow: false
  1003. snowman: false
  1004. ocelot: false
  1005. iron_golem: false
  1006. villager: false
  1007. wither: false
  1008. bat: false
  1009. witch: false
  1010. horse: false
  1011. phantom: false
  1012.  
  1013. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  1014. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  1015. creeper:
  1016. max-height: -1
  1017.  
  1018. # Disable various default physics and behaviors.
  1019. disable:
  1020. # Should fall damage be disabled?
  1021. fall: false
  1022.  
  1023. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  1024. # They will be unable to attack users without that same permission node.
  1025. pvp: false
  1026.  
  1027. # Should drowning damage be disabled?
  1028. # (Split into two behaviors; generally, you want both set to the same value.)
  1029. drown: false
  1030. suffocate: false
  1031.  
  1032. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  1033. lavadmg: false
  1034.  
  1035. # Should arrow damage be disabled?
  1036. projectiles: false
  1037.  
  1038. # This will disable damage from touching cacti.
  1039. contactdmg: false
  1040.  
  1041. # Burn, baby, burn! Should fire damage be disabled?
  1042. firedmg: false
  1043.  
  1044. # Should the damage after hit by a lightning be disabled?
  1045. lightning: false
  1046.  
  1047. # Should Wither damage be disabled?
  1048. wither: false
  1049.  
  1050. # Disable weather options?
  1051. weather:
  1052. storm: false
  1053. thunder: false
  1054. lightning: false
  1055.  
  1056. ############################################################
  1057. # +------------------------------------------------------+ #
  1058. # | EssentialsX AntiBuild | #
  1059. # +------------------------------------------------------+ #
  1060. ############################################################
  1061.  
  1062. # You need to install EssentialsX AntiBuild for this section to work.
  1063. # See https://essentialsx.net/wiki/Module-Breakdown.html and http://wiki.ess3.net/wiki/AntiBuild for more information.
  1064.  
  1065. # Should people without the essentials.build permission be allowed to build?
  1066. # Set true to disable building for those people.
  1067. # Setting to false means EssentialsAntiBuild will never prevent you from building.
  1068. build: true
  1069.  
  1070. # Should people without the essentials.build permission be allowed to use items?
  1071. # Set true to disable using for those people.
  1072. # Setting to false means EssentialsAntiBuild will never prevent you from using items.
  1073. use: true
  1074.  
  1075. # Should we warn people when they are not allowed to build?
  1076. warn-on-build-disallow: true
  1077.  
  1078. # For which block types would you like to be alerted?
  1079. # You can find a list of items at https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html.
  1080. alert:
  1081. on-placement: LAVA,TNT,LAVA_BUCKET
  1082. on-use: LAVA_BUCKET
  1083. on-break:
  1084.  
  1085. blacklist:
  1086.  
  1087. # Which blocks should people be prevented from placing?
  1088. placement: LAVA,TNT,LAVA_BUCKET
  1089.  
  1090. # Which items should people be prevented from using?
  1091. usage: LAVA_BUCKET
  1092.  
  1093. # Which blocks should people be prevented from breaking?
  1094. break:
  1095.  
  1096. # Which blocks should not be moved by pistons?
  1097. piston:
  1098.  
  1099. # Which blocks should not be dispensed by dispensers
  1100. dispenser:
  1101.  
  1102. ############################################################
  1103. # +------------------------------------------------------+ #
  1104. # | EssentialsX Spawn + New Players | #
  1105. # +------------------------------------------------------+ #
  1106. ############################################################
  1107.  
  1108. # You need to install EssentialsX Spawn for this section to work.
  1109. # See https://essentialsx.net/wiki/Module-Breakdown.html for more information.
  1110.  
  1111. newbies:
  1112. # Should we announce to the server when someone logs in for the first time?
  1113. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  1114. # If not, set to ''
  1115. #announce-format: ''
  1116. announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
  1117.  
  1118. # When we spawn for the first time, which spawnpoint do we use?
  1119. # Set to "none" if you want to use the spawn point of the world.
  1120. spawnpoint: newbies
  1121.  
  1122. # Do we want to give users anything on first join? Set to '' to disable
  1123. # This kit will be given regardless of cost and permissions, and will not trigger the kit delay.
  1124. #kit: ''
  1125. kit: tools
  1126.  
  1127. # What priority should we use for handling respawns?
  1128. # Set this to none, if you want vanilla respawning behaviour.
  1129. # Set this to lowest, if you want Multiverse to handle the respawning.
  1130. # Set this to high, if you want EssentialsSpawn to handle the respawning.
  1131. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning.
  1132. # Note: Changes will not apply until after the server is restarted.
  1133. respawn-listener-priority: high
  1134.  
  1135. # What priority should we use for handling spawning on joining the server?
  1136. # See respawn-listener-priority for possible values.
  1137. # Note: Changing this may impact or break spawn-on-join functionality.
  1138. # Note: Changes will not apply until after the server is restarted.
  1139. spawn-join-listener-priority: high
  1140.  
  1141. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  1142. respawn-at-home: false
  1143.  
  1144. # When users die, should they respawn at their bed instead of the spawnpoint?
  1145. # The value of respawn-at-home (above) has to be true.
  1146. respawn-at-home-bed: true
  1147.  
  1148. # When users die, should EssentialsSpawn respect users' respawn anchors?
  1149. respawn-at-anchor: false
  1150.  
  1151. # Teleport all joining players to the spawnpoint
  1152. spawn-on-join: false
  1153. # The following value of `guests` states that all players in group `guests` will be teleported to spawn when joining.
  1154. #spawn-on-join: guests
  1155. # The following list value states that all players in group `guests` and `admin` are to be teleported to spawn when joining.
  1156. #spawn-on-join:
  1157. #- guests
  1158. #- admin
  1159.  
  1160. # End of file <-- No seriously, you're done with configuration.
  1161.  
Add Comment
Please, Sign In to add comment