Advertisement
Guest User

Untitled

a guest
May 20th, 2017
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 31.52 KB | None | 0 0
  1. ############################################################
  2. # +------------------------------------------------------+ #
  3. # | Notes | #
  4. # +------------------------------------------------------+ #
  5. ############################################################
  6.  
  7. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
  8. # If you receive an error when Essentials loads, ensure that:
  9. # - No tabs are present: YAML only allows spaces
  10. # - Indents are correct: YAML hierarchy is based entirely on indentation
  11. # - 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)
  12. # - Text with symbols is enclosed in single or double quotation marks
  13.  
  14. # If you have problems join the Essentials help support channel: http://tiny.cc/EssentialsChat
  15.  
  16. ############################################################
  17. # +------------------------------------------------------+ #
  18. # | Essentials (Global) | #
  19. # +------------------------------------------------------+ #
  20. ############################################################
  21.  
  22. # A color code between 0-9 or a-f. Set to 'none' to disable.
  23. ops-name-color: 'none'
  24.  
  25. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  26. nickname-prefix: ''
  27.  
  28. # The maximum length allowed in nicknames. The nickname prefix is included in this.
  29. max-nick-length: 15
  30.  
  31. # When this option is enabled, nickname length checking will exclude color codes in player names.
  32. # 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
  33. ignore-colors-in-max-nick-length: false
  34.  
  35. # Disable this if you have any other plugin, that modifies the displayname of a user.
  36. change-displayname: false
  37.  
  38. # When this option is enabled, the (tab) player list will be updated with the displayname.
  39. # The value of change-displayname (above) has to be true.
  40. #change-playerlist: false
  41.  
  42. # When EssentialsChat.jar isn't used, force essentials to add the prefix and suffix from permission plugins to displayname.
  43. # This setting is ignored if EssentialsChat.jar is used, and defaults to 'true'.
  44. # The value of change-displayname (above) has to be true.
  45. # Do not edit this setting unless you know what you are doing!
  46. #add-prefix-suffix: false
  47.  
  48. # If the teleport destination is unsafe, should players be teleported to the nearest safe location?
  49. # If this is set to true, Essentials will attempt to teleport players close to the intended destination.
  50. # If this is set to false, attempted teleports to unsafe locations will be cancelled with a warning.
  51. teleport-safety: true
  52.  
  53. # This forcefully disables teleport safety checks without a warning if attempting to teleport to unsafe locations.
  54. # teleport-safety and this option need to be set to true to force teleportation to dangerous locations.
  55. force-disable-teleport-safety: false
  56.  
  57. # The delay, in seconds, required between /home, /tp, etc.
  58. teleport-cooldown: 0
  59.  
  60. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport is cancelled.
  61. teleport-delay: 0
  62.  
  63. # The delay, in seconds, a player can't be attacked by other players after they have been teleported by a command.
  64. # This will also prevent the player attacking other players.
  65. teleport-invulnerability: 4
  66.  
  67. # Whether to make all teleportations go to the center of the block; where the x and z coordinates decimal become .5
  68. teleport-to-center: true
  69.  
  70. # The delay, in seconds, required between /heal or /feed attempts.
  71. heal-cooldown: 60
  72.  
  73. # Near Radius
  74. # The default radius with /near
  75. # Used to use chat radius but we are going to make it separate.
  76. near-radius: 200
  77.  
  78. # What to prevent from /item and /give.
  79. # e.g item-spawn-blacklist: 10,11,46
  80. item-spawn-blacklist:
  81.  
  82. # Set this to true if you want permission based item spawn rules.
  83. # Note: The blacklist above will be ignored then.
  84. # Example permissions (these go in your permissions manager):
  85. # - essentials.itemspawn.item-all
  86. # - essentials.itemspawn.item-[itemname]
  87. # - essentials.itemspawn.item-[itemid]
  88. # - essentials.give.item-all
  89. # - essentials.give.item-[itemname]
  90. # - essentials.give.item-[itemid]
  91. # - essentials.unlimited.item-all
  92. # - essentials.unlimited.item-[itemname]
  93. # - essentials.unlimited.item-[itemid]
  94. # - essentials.unlimited.item-bucket # Unlimited liquid placing
  95. #
  96. # For more information, visit http://wiki.ess3.net/wiki/Command_Reference/ICheat#Item.2FGive
  97. permission-based-item-spawn: false
  98.  
  99. # Mob limit on the /spawnmob command per execution.
  100. spawnmob-limit: 10
  101.  
  102. # Shall we notify users when using /lightning?
  103. warn-on-smite: true
  104.  
  105. # Shall we drop items instead of adding to inventory if the target inventory is full?
  106. drop-items-if-full: false
  107.  
  108. # Essentials Mail Notification
  109. # Should we notify players if they have no new mail?
  110. notify-no-new-mail: true
  111.  
  112. # The motd and rules are now configured in the files motd.txt and rules.txt.
  113.  
  114. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority.
  115. # Commands in this list, will tell Essentials to 'not give up' the command to other plugins.
  116. # In this state, which plugin 'wins' appears to be almost random.
  117. #
  118. # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias.
  119. # To force essentials to take 'god' alias 'god' to 'egod'.
  120. # See http://wiki.bukkit.org/Commands.yml#aliases for more information.
  121.  
  122. overridden-commands:
  123. # - god
  124. # - info
  125.  
  126. # Disabling commands here will prevent Essentials handling the command, this will not affect command conflicts.
  127. # You should not have to disable commands used in other plugins, they will automatically get priority.
  128. # See http://wiki.bukkit.org/Commands.yml#aliases to map commands to other plugins.
  129. disabled-commands:
  130. - nick
  131. - msg
  132. - tell
  133. - g
  134. - m
  135.  
  136. # These commands will be shown to players with socialSpy enabled.
  137. # You can add commands from other plugins you may want to track or
  138. # remove commands that are used for something you dont want to spy on.
  139. # Set - '*' in order to listen on all possible commands.
  140. socialspy-commands:
  141. - msg
  142. - w
  143. - r
  144. - mail
  145. - m
  146. - t
  147. - whisper
  148. - emsg
  149. - tell
  150. - er
  151. - reply
  152. - ereply
  153. - email
  154. - action
  155. - describe
  156. - eme
  157. - eaction
  158. - edescribe
  159. - etell
  160. - ewhisper
  161. - pm
  162. - '*'
  163.  
  164. # Mute Commands
  165. # These commands will be disabled when a player is muted.
  166. # Use '*' to disable every command.
  167. # Essentials already disabled Essentials messaging commands by default.
  168. # It only cares about the root command, not args after that (it sees /f chat the same as /f)
  169. mute-commands:
  170. - f
  171. - kittycannon
  172. # - '*'
  173.  
  174. # If you do not wish to use a permission system, you can define a list of 'player perms' below.
  175. # This list has no effect if you are using a supported permissions system.
  176. # If you are using an unsupported permissions system, simply delete this section.
  177. # Whitelist the commands and permissions you wish to give players by default (everything else is op only).
  178. # These are the permissions without the "essentials." part.
  179. player-commands:
  180. - afk
  181. - afk.auto
  182. - back
  183. - back.ondeath
  184. - balance
  185. - balance.others
  186. - balancetop
  187. - build
  188. - chat.color
  189. - chat.format
  190. - chat.shout
  191. - chat.question
  192. - clearinventory
  193. - compass
  194. - depth
  195. - delhome
  196. - getpos
  197. - geoip.show
  198. - help
  199. - helpop
  200. - home
  201. - home.others
  202. - ignore
  203. - info
  204. - itemdb
  205. - kit
  206. - kits.tools
  207. - list
  208. - mail
  209. - mail.send
  210. - me
  211. - motd
  212. #- msg
  213. #- msg.color
  214. - nick
  215. - near
  216. - pay
  217. - ping
  218. - protect
  219. - r
  220. - rules
  221. - realname
  222. - seen
  223. - sell
  224. - sethome
  225. - setxmpp
  226. - signs.create.protection
  227. - signs.create.trade
  228. - signs.break.protection
  229. - signs.break.trade
  230. - signs.use.balance
  231. - signs.use.buy
  232. - signs.use.disposal
  233. - signs.use.enchant
  234. - signs.use.free
  235. - signs.use.gamemode
  236. - signs.use.heal
  237. - signs.use.info
  238. - signs.use.kit
  239. - signs.use.mail
  240. - signs.use.protection
  241. - signs.use.repair
  242. - signs.use.sell
  243. - signs.use.time
  244. - signs.use.trade
  245. - signs.use.warp
  246. - signs.use.weather
  247. - spawn
  248. - suicide
  249. - time
  250. - tpa
  251. - tpaccept
  252. - tpahere
  253. - tpdeny
  254. - warp
  255. - warp.list
  256. - world
  257. - worth
  258. - xmpp
  259.  
  260. # When this option is enabled, one-time use kits (ie. delay < 0) will be
  261. # removed from the /kit list when a player can no longer use it
  262. skip-used-one-time-kits-from-kit-list: true
  263.  
  264. # Note: All items MUST be followed by a quantity!
  265. # All kit names should be lower case, and will be treated as lower in permissions/costs.
  266. # Syntax: - itemID[:DataValue/Durability] Amount [Enchantment:Level].. [itemmeta:value]...
  267. # For Item Meta information visit http://wiki.ess3.net/wiki/Item_Meta
  268. # 'delay' refers to the cooldown between how often you can use each kit, measured in seconds.
  269. # Set delay to -1 for a one time kit.
  270. # For more information, visit http://wiki.ess3.net/wiki/Kits
  271. kits:
  272.  
  273.  
  274. # Essentials Sign Control
  275. # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
  276. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  277. # Essentials colored sign support will be enabled when any sign types are enabled.
  278. # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
  279.  
  280. enabledSigns:
  281. - color
  282. #- balance
  283. #- buy
  284. #- sell
  285. #- trade
  286. - free
  287. - disposal
  288. - warp
  289. #- kit
  290. #- mail
  291. #- enchant
  292. #- gamemode
  293. #- heal
  294. #- info
  295. #- spawnmob
  296. - repair
  297. #- time
  298. #- weather
  299.  
  300. # How many times per second can Essentials signs be interacted with per player.
  301. # Values should be between 1-20, 20 being virtually no lag protection.
  302. # Lower numbers will reduce the possibility of lag, but may annoy players.
  303. sign-use-per-second: 4
  304.  
  305. # List of sign names Essentials should not protect. This feature is especially useful when
  306. # another plugin provides a sign that EssentialsX provides, but Essentials overrides.
  307. # For example, if a plugin provides a [kit] sign, and you wish to use theirs instead of
  308. # Essentials's, then simply add kit below and Essentials will not protect it.
  309. #
  310. # See https://github.com/drtshock/Essentials/pull/699 for more information.
  311. unprotected-sign-names:
  312. #- kit
  313.  
  314. # Backup runs a batch/bash command while saving is disabled.
  315. backup:
  316. # Interval in minutes.
  317. interval: 30
  318. # Unless you add a valid backup command or script here, this feature will be useless.
  319. # Use 'save-all' to simply force regular world saving without backup.
  320. #command: 'rdiff-backup World1 backups/World1'
  321.  
  322. # Set this true to enable permission per warp.
  323. per-warp-permission: true
  324.  
  325. # Sort output of /list command by groups.
  326. # You can hide and merge the groups displayed in /list by defining the desired behaviour here.
  327. # Detailed instructions and examples can be found on the wiki: http://wiki.ess3.net/wiki/List
  328. list:
  329. # To merge groups, list the groups you wish to merge
  330. #Staff: owner admin moderator
  331. Staff: Elder Admin
  332. Owner: Owner
  333. # To limit groups, set a max user limit
  334. #builder: 20
  335. # To hide groups, set the group as hidden
  336. #default: hidden
  337. # Uncomment the line below to simply list all players with no grouping
  338. #Players: '*'
  339.  
  340. # More output to the console.
  341. debug: false
  342.  
  343. # Set the locale for all messages.
  344. # If you don't set this, the default locale of the server will be used.
  345. # For example, to set language to English, set locale to en, to use the file "messages_en.properties".
  346. # Don't forget to remove the # in front of the line.
  347. # For more information, visit http://wiki.ess3.net/wiki/Locale
  348. #locale: en
  349.  
  350. # Turn off god mode when people leave the server.
  351. remove-god-on-disconnect: false
  352.  
  353. # Auto-AFK
  354. # After this timeout in seconds, the user will be set as AFK.
  355. # This feature requires the player to have essentials.afk.auto node.
  356. # Set to -1 for no timeout.
  357. auto-afk: 300
  358.  
  359. # Auto-AFK Kick
  360. # After this timeout in seconds, the user will be kicked from the server.
  361. # essentials.afk.kickexempt node overrides this feature.
  362. # Set to -1 for no timeout.
  363. auto-afk-kick: 600
  364.  
  365. # Set this to true, if you want to freeze the player, if the player is AFK.
  366. # Other players or monsters can't push the player out of AFK mode then.
  367. # This will also enable temporary god mode for the AFK player.
  368. # The player has to use the command /afk to leave the AFK mode.
  369. freeze-afk-players: true
  370. # When the player is AFK, should he be able to pickup items?
  371. # Enable this, when you don't want people idling in mob traps.
  372. disable-item-pickup-while-afk: true
  373.  
  374. # This setting controls if a player is marked as active on interaction.
  375. # When this setting is false, the player would need to manually un-AFK using the /afk command.
  376. cancel-afk-on-interact: true
  377.  
  378. # Should we automatically remove afk status when a player moves?
  379. # Player will be removed from AFK on chat/command regardless of this setting.
  380. # Disable this to reduce server lag.
  381. cancel-afk-on-move: true
  382.  
  383. # Set the player's list name when they are AFK. This is none by default which specifies that Essentials
  384. # should not interfere with the AFK player's list name.
  385. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  386. afk-list-name: none
  387.  
  388. # You can disable the death messages of Minecraft here.
  389. death-messages: true
  390.  
  391. # Should players with permissions be able to join and part silently?
  392. # You can control this with essentials.silentjoin and essentials.silentquit permissions if it is enabled.
  393. # In addition, people with essentials.silentjoin.vanish will be vanished on join.
  394. allow-silent-join-quit: false
  395.  
  396. # You can set a custom join message here, set to "none" to disable.
  397. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  398. custom-join-message: "&e{PLAYER}&e, has appeared in the realm!"
  399.  
  400. # You can set a custom quit message here, set to "none" to disable.
  401. # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
  402. custom-quit-message: "none"
  403.  
  404. # Add worlds to this list, if you want to automatically disable god mode there.
  405. no-god-in-worlds:
  406. # - world_nether
  407.  
  408. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands.
  409. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  410. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  411. # This does not affect the /home command, there is a separate toggle below for this.
  412. world-teleport-permissions: false
  413.  
  414. # The number of items given if the quantity parameter is left out in /item or /give.
  415. # If this number is below 1, the maximum stack size size is given. If over-sized stacks.
  416. # are not enabled, any number higher than the maximum stack size results in more than one stack.
  417. default-stack-size: -1
  418.  
  419. # Over-sized stacks are stacks that ignore the normal max stack size.
  420. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  421. # How many items should be in an over-sized stack?
  422. oversized-stacksize: 64
  423.  
  424. # Allow repair of enchanted weapons and armor.
  425. # If you set this to false, you can still allow it for certain players using the permission.
  426. # essentials.repair.enchanted
  427. repair-enchanted: true
  428.  
  429. # Allow 'unsafe' enchantments in kits and item spawning.
  430. # Warning: Mixing and overleveling some enchantments can cause issues with clients, servers and plugins.
  431. unsafe-enchantments: false
  432.  
  433. #Do you want Essentials to keep track of previous location for /back in the teleport listener?
  434. #If you set this to true any plugin that uses teleport will have the previous location registered.
  435. register-back-in-listener: false
  436.  
  437. #Delay to wait before people can cause attack damage after logging in.
  438. login-attack-delay: 5
  439.  
  440. #Set the max fly speed, values range from 0.1 to 1.0
  441. max-fly-speed: 0.8
  442.  
  443. #Set the max walk speed, values range from 0.1 to 1.0
  444. max-walk-speed: 0.8
  445.  
  446. #Set the maximum amount of mail that can be sent within a minute.
  447. mails-per-minute: 1000
  448.  
  449. # Set the maximum time /tempban can be used for in seconds.
  450. # Set to -1 to disable, and essentials.tempban.unlimited can be used to override.
  451. max-tempban-time: -1
  452.  
  453. # Changes /reply functionality. If true, /r goes to the person you messaged last, otherwise the first person that messaged you.
  454. # If false, /r goes to the last person that messaged you.
  455. last-message-reply-recipient: true
  456.  
  457. # If last-message-reply-recipient is true, this specifies the duration, in seconds, that would need to elapse for the
  458. # reply-recipient to update when receiving a message.
  459. # Default is 180 (3 minutes)
  460. last-message-reply-recipient-timeout: 180
  461.  
  462. # Toggles whether or not right clicking mobs with a milk bucket turns them into a baby.
  463. milk-bucket-easter-egg: true
  464.  
  465. # Toggles whether or not the fly status message should be sent to players on join
  466. send-fly-enable-on-join: true
  467.  
  468. # Set to true to enable per-world permissions for setting time for individual worlds with essentials commands.
  469. # This applies to /time, /day, /eday, /night, /enight, /etime.
  470. # Give someone permission to teleport to a world with essentials.time.world.<worldname>.
  471. world-time-permissions: false
  472.  
  473. # Specify cooldown for both Essentials commands and external commands as well.
  474. # All commands do not start with a Forward Slash (/). Instead of /msg, write msg
  475. #
  476. # Wildcards are supported. E.g.
  477. # - '*i*': 50
  478. # adds a 50 second cooldown to all commands that include the letter i
  479. #
  480. # EssentialsX supports regex by starting the command with a caret ^
  481. # For example, to target commands starting with ban and not banip the following would be used:
  482. # '^ban([^ip])( .*)?': 60 # 60 seconds /ban cooldown.
  483. # Note: If you have a command that starts with ^, then you can escape it using backslash (\). e.g. \^command: 123
  484. command-cooldowns:
  485. # feed: 100 # 100 second cooldown on /feed command
  486. # '*': 5 # 5 Second cooldown on all commands
  487.  
  488. # Whether command cooldowns should be persistent past server shutdowns
  489. command-cooldown-persistence: true
  490.  
  491. # Whether NPC balances should be listed in balance ranking features such as /balancetop.
  492. # NPC balances can include features like factions from FactionsUUID plugin.
  493. npcs-in-balance-ranking: false
  494.  
  495. # Determines the functionality of the /createkit command.
  496. # If this is true, /createkit will give the user a link with the kit code.
  497. # If this is false, /createkit will add the kit to this config file directly.
  498. #
  499. # WARNING: If this is false, the config comments WILL be removed and it won't look the same as it does now.
  500. pastebin-createkit: true
  501.  
  502. ############################################################
  503. # +------------------------------------------------------+ #
  504. # | EssentialsHome | #
  505. # +------------------------------------------------------+ #
  506. ############################################################
  507.  
  508. # Allows people to set their bed at daytime.
  509. update-bed-at-daytime: true
  510.  
  511. # Set to true to enable per-world permissions for using homes to teleport between worlds.
  512. # This applies to the /home only.
  513. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  514. world-home-permissions: false
  515.  
  516. # Allow players to have multiple homes.
  517. # Players need essentials.sethome.multiple before they can have more than 1 home.
  518. # You can set the default number of multiple homes using the 'default' rank below.
  519. # To remove the home limit entirely, give people 'essentials.sethome.multiple.unlimited'.
  520. # To grant different home amounts to different people, you need to define a 'home-rank' below.
  521. # Create the 'home-rank' below, and give the matching permission: essentials.sethome.multiple.<home-rank>
  522. # For more information, visit http://wiki.ess3.net/wiki/Multihome
  523. sethome-multiple:
  524. default: 10
  525. vip: 10
  526. staff: 10
  527.  
  528. # In this example someone with 'essentials.sethome.multiple' and 'essentials.sethome.multiple.vip' will have 5 homes.
  529. # Remember, they MUST have both permission nodes in order to be able to set multiple homes.
  530.  
  531. # Set the timeout, in seconds for players to accept a tpa before the request is cancelled.
  532. # Set to 0 for no timeout.
  533. tpa-accept-cancellation: 120
  534.  
  535. ############################################################
  536. # +------------------------------------------------------+ #
  537. # | EssentialsEco | #
  538. # +------------------------------------------------------+ #
  539. ############################################################
  540.  
  541. # For more information, visit http://wiki.ess3.net/wiki/Essentials_Economy
  542.  
  543. # Defines the balance with which new players begin. Defaults to 0.
  544. starting-balance: 300
  545.  
  546. # worth-# defines the value of an item when it is sold to the server via /sell.
  547. # These are now defined in worth.yml
  548.  
  549. # Defines the cost to use the given commands PER USE.
  550. # Some commands like /repair have sub-costs, check the wiki for more information.
  551. command-costs:
  552. # /example costs $1000 PER USE
  553. #example: 1000
  554. # /kit tools costs $1500 PER USE
  555. #kit-tools: 1500
  556.  
  557. # Set this to a currency symbol you want to use.
  558. # Remember, if you want to use special characters in this document,
  559. # such as accented letters, you MUST save the file as UTF-8, not ANSI.
  560. currency-symbol: '$'
  561.  
  562. # Set the maximum amount of money a player can have.
  563. # The amount is always limited to 10 trillion because of the limitations of a java double.
  564. max-money: 10000000000000
  565.  
  566. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  567. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  568. min-money: -10000
  569.  
  570. # Enable this to log all interactions with trade/buy/sell signs and sell command.
  571. economy-log-enabled: false
  572.  
  573. # Use this option to force superperms-based permissions handler regardless of detected installed perms plugin.
  574. # This is useful if you want superperms-based permissions (with wildcards) for custom permissions plugins.
  575. # Default is false.
  576. use-bukkit-permissions: false
  577.  
  578. # Minimum acceptable amount to be used in /pay.
  579. minimum-pay-amount: 0.001
  580.  
  581. # The format of currency, excluding symbols. See currency-sumbol-format-locale for symbol configuration.
  582. #
  583. # "#,##0.00" is how the majority of countries display currency.
  584. #currency-format: "#,##0.00"
  585.  
  586. # Format currency symbols. Some locales use , and . interchangeably.
  587. # Some formats do not display properly in-game due to faulty Minecraft font rendering.
  588. #
  589. # For 1.234,50 use de-DE
  590. # For 1,234.50 use en-US
  591. # For 1'234,50 use fr-ch
  592. #currency-symbol-format-locale: en-US
  593.  
  594. ############################################################
  595. # +------------------------------------------------------+ #
  596. # | EssentialsHelp | #
  597. # +------------------------------------------------------+ #
  598. ############################################################
  599.  
  600. # Show other plugins commands in help.
  601. non-ess-in-help: true
  602.  
  603. # Hide plugins which do not give a permission.
  604. # You can override a true value here for a single plugin by adding a permission to a user/group.
  605. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
  606. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
  607. hide-permissionless-help: true
  608.  
  609. ############################################################
  610. # +------------------------------------------------------+ #
  611. # | EssentialsChat | #
  612. # +------------------------------------------------------+ #
  613. ############################################################
  614.  
  615. # This section requires the EssentialsChat.jar to work.
  616.  
  617. chat:
  618.  
  619. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  620. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  621. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  622. # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  623. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  624. radius: 0
  625.  
  626. # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  627. # Or you can give a group specific chat format, to give some extra variation.
  628. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  629.  
  630. #format: '<{DISPLAYNAME}> {MESSAGE}'
  631. #format: '&r{DISPLAYNAME}&7:&r {MESSAGE}'
  632.  
  633. group-formats:
  634. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
  635. # Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'
  636.  
  637. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  638.  
  639. ############################################################
  640. # +------------------------------------------------------+ #
  641. # | EssentialsProtect | #
  642. # +------------------------------------------------------+ #
  643. ############################################################
  644.  
  645. # This section requires the EssentialsProtect.jar to work.
  646.  
  647. protect:
  648.  
  649. # General physics/behavior modifications.
  650. prevent:
  651. lava-flow: false
  652. water-flow: false
  653. water-bucket-flow: false
  654. fire-spread: true
  655. lava-fire-spread: true
  656. flint-fire: false
  657. lightning-fire-spread: true
  658. portal-creation: false
  659. tnt-explosion: false
  660. tnt-playerdamage: false
  661. tnt-minecart-explosion: false
  662. tnt-minecart-playerdamage: false
  663. fireball-explosion: false
  664. fireball-fire: false
  665. fireball-playerdamage: false
  666. witherskull-explosion: false
  667. witherskull-playerdamage: false
  668. wither-spawnexplosion: false
  669. wither-blockreplace: false
  670. creeper-explosion: false
  671. creeper-playerdamage: false
  672. creeper-blockdamage: false
  673. enderdragon-blockdamage: true
  674. enderman-pickup: false
  675. villager-death: false
  676. # Monsters won't follow players.
  677. # permission essentials.protect.entitytarget.bypass disables this.
  678. entitytarget: false
  679. # Prevent the spawning of creatures.
  680. spawn:
  681. creeper: false
  682. skeleton: false
  683. spider: false
  684. giant: false
  685. zombie: false
  686. slime: false
  687. ghast: false
  688. pig_zombie: false
  689. enderman: false
  690. cave_spider: false
  691. silverfish: false
  692. blaze: false
  693. magma_cube: false
  694. ender_dragon: false
  695. pig: false
  696. sheep: false
  697. cow: false
  698. chicken: false
  699. squid: false
  700. wolf: false
  701. mushroom_cow: false
  702. snowman: false
  703. ocelot: false
  704. iron_golem: false
  705. villager: false
  706. wither: false
  707. bat: false
  708. witch: false
  709. horse: false
  710.  
  711. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  712. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  713. creeper:
  714. max-height: -1
  715.  
  716. # Disable various default physics and behaviors.
  717. disable:
  718. # Should fall damage be disabled?
  719. fall: false
  720.  
  721. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  722. # They will be unable to attack users without that same permission node.
  723. pvp: false
  724.  
  725. # Should drowning damage be disabled?
  726. # (Split into two behaviors; generally, you want both set to the same value.)
  727. drown: false
  728. suffocate: false
  729.  
  730. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  731. lavadmg: false
  732.  
  733. # Should arrow damage be disabled?
  734. projectiles: false
  735.  
  736. # This will disable damage from touching cacti.
  737. contactdmg: false
  738.  
  739. # Burn, baby, burn! Should fire damage be disabled?
  740. firedmg: false
  741.  
  742. # Should the damage after hit by a lightning be disabled?
  743. lightning: false
  744.  
  745. # Should Wither damage be disabled?
  746. wither: false
  747.  
  748. # Disable weather options?
  749. weather:
  750. storm: false
  751. thunder: false
  752. lightning: false
  753.  
  754. ############################################################
  755. # +------------------------------------------------------+ #
  756. # | EssentialsAntiBuild | #
  757. # +------------------------------------------------------+ #
  758. ############################################################
  759.  
  760. # This section requires the EssentialsAntiBuild.jar to work.
  761.  
  762. # Disable various default physics and behaviors
  763. # For more information, visit http://wiki.ess3.net/wiki/AntiBuild
  764.  
  765. # Should people with build: false in permissions be allowed to build?
  766. # Set true to disable building for those people.
  767. # Setting to false means EssentialsAntiBuild will never prevent you from building.
  768. build: true
  769.  
  770. # Should people with build: false in permissions be allowed to use items?
  771. # Set true to disable using for those people.
  772. # Setting to false means EssentialsAntiBuild will never prevent you from using items.
  773. use: true
  774.  
  775. # Should we tell people they are not allowed to build?
  776. warn-on-build-disallow: true
  777.  
  778. # For which block types would you like to be alerted?
  779. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  780. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  781. alert:
  782. on-placement: 10,11,46,327
  783. on-use: 327
  784. on-break:
  785.  
  786. blacklist:
  787.  
  788. # Which blocks should people be prevented from placing?
  789. placement: 10,11,46,327
  790.  
  791. # Which items should people be prevented from using?
  792. usage: 327
  793.  
  794. # Which blocks should people be prevented from breaking?
  795. break:
  796.  
  797. # Which blocks should not be pushed by pistons?
  798. piston:
  799.  
  800. # Which blocks should not be dispensed by dispensers
  801. dispenser:
  802.  
  803. ############################################################
  804. # +------------------------------------------------------+ #
  805. # | Essentials Spawn / New Players | #
  806. # +------------------------------------------------------+ #
  807. ############################################################
  808.  
  809. # This section requires essentialsspawn.jar to work.
  810.  
  811. newbies:
  812. # Should we announce to the server when someone logs in for the first time?
  813. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  814. # If not, set to ''
  815. #announce-format: ''
  816. announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
  817.  
  818. # When we spawn for the first time, which spawnpoint do we use?
  819. # Set to "none" if you want to use the spawn point of the world.
  820. spawnpoint: newbies
  821.  
  822. # Do we want to give users anything on first join? Set to '' to disable
  823. # This kit will be given regardless of cost and permissions, and will not trigger the kit delay.
  824. #kit: ''
  825. kit: tools
  826.  
  827. # Set this to lowest, if you want Multiverse to handle the respawning.
  828. # Set this to high, if you want EssentialsSpawn to handle the respawning.
  829. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning.
  830. respawn-listener-priority: high
  831.  
  832. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  833. respawn-at-home: false
  834.  
  835. # Teleport all joining players to the spawnpoint
  836. spawn-on-join: false
  837.  
  838. # End of file <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement