Advertisement
BeatZ56

Untitled

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