Advertisement
Guest User

Untitled

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