Giller

Essentials config

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