Advertisement
Guest User

Untitled

a guest
Nov 9th, 2014
666
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 29.42 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: 100
  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: false
  43.  
  44. # The delay, in seconds, required between /home, /tp, etc.
  45. teleport-cooldown: 3
  46.  
  47. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  48. teleport-delay: 0
  49.  
  50. # The delay, in seconds, a player can't be attacked by other players after they have been teleported by a command.
  51. # This will also prevent the player attacking other players.
  52. teleport-invulnerability: 15
  53.  
  54. # The delay, in seconds, required between /heal or /feed attempts.
  55. heal-cooldown: 60
  56.  
  57. # What to prevent from /i /give.
  58. # e.g item-spawn-blacklist: 46,11,10
  59. item-spawn-blacklist:
  60.  
  61. # Set this to true if you want permission based item spawn rules.
  62. # Note: The blacklist above will be ignored then.
  63. # Example permissions (these go in your permissions manager):
  64. # - essentials.itemspawn.item-all
  65. # - essentials.itemspawn.item-[itemname]
  66. # - essentials.itemspawn.item-[itemid]
  67. # - essentials.give.item-all
  68. # - essentials.give.item-[itemname]
  69. # - essentials.give.item-[itemid]
  70. # - essentials.unlimited.item-all
  71. # - essentials.unlimited.item-[itemname]
  72. # - essentials.unlimited.item-[itemid]
  73. # - essentials.unlimited.item-bucket # Unlimited liquid placing
  74. #
  75. # For more information, visit http://wiki.ess3.net/wiki/Command_Reference/ICheat#Item.2FGive
  76. permission-based-item-spawn: false
  77.  
  78. # Mob limit on the /spawnmob command per execution.
  79. spawnmob-limit: 5
  80.  
  81. # Shall we notify users when using /lightning?
  82. warn-on-smite: true
  83.  
  84. # motd and rules are now configured in the files motd.txt and rules.txt.
  85.  
  86. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority.
  87. # Commands in this list, will tell Essentials to 'not give up' the command to other plugins.
  88. # In this state, which plugin 'wins' appears to be almost random.
  89. #
  90. # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias.
  91. # To force essentials to take 'god' alias 'god' to 'egod'.
  92. # See http://wiki.bukkit.org/Bukkit.yml#aliases for more information
  93.  
  94. overridden-commands:
  95. # - god
  96. # - info
  97.  
  98. # Disabling commands here will prevent Essentials handling the command, this will not affect command conflicts.
  99. # Commands should fallback to the vanilla versions if available.
  100. # You should not have to disable commands used in other plugins, they will automatically get priority.
  101. disabled-commands:
  102. # - nick
  103. # - clear
  104.  
  105. # These commands will be shown to players with socialSpy enabled.
  106. # You can add commands from other plugins you may want to track or
  107. # remove commands that are used for something you dont want to spy on.
  108. socialspy-commands:
  109. - msg
  110. - w
  111. - r
  112. - mail
  113. - m
  114. - t
  115. - whisper
  116. - emsg
  117. - tell
  118. - er
  119. - reply
  120. - ereply
  121. - email
  122. - action
  123. - describe
  124. - eme
  125. - eaction
  126. - edescribe
  127. - etell
  128. - ewhisper
  129. - pm
  130.  
  131. # If you do not wish to use a permission system, you can define a list of 'player perms' below.
  132. # This list has no effect if you are using a supported permissions system.
  133. # If you are using an unsupported permissions system, simply delete this section.
  134. # Whitelist the commands and permissions you wish to give players by default (everything else is op only).
  135. # These are the permissions without the "essentials." part.
  136. player-commands:
  137. - afk
  138. - afk.auto
  139. - back
  140. - back.ondeath
  141. - balance
  142. - balance.others
  143. - balancetop
  144. - build
  145. - chat.color
  146. - chat.format
  147. - chat.shout
  148. - chat.question
  149. - clearinventory
  150. - compass
  151. - depth
  152. - delhome
  153. - getpos
  154. - geoip.show
  155. - help
  156. - helpop
  157. - home
  158. - home.others
  159. - ignore
  160. - info
  161. - itemdb
  162. - kit
  163. - kits.tools
  164. - list
  165. - mail
  166. - mail.send
  167. - me
  168. - motd
  169. - msg
  170. - msg.color
  171. - nick
  172. - near
  173. - pay
  174. - ping
  175. - protect
  176. - r
  177. - rules
  178. - realname
  179. - seen
  180. - sell
  181. - sethome
  182. - setxmpp
  183. - signs.create.protection
  184. - signs.create.trade
  185. - signs.break.protection
  186. - signs.break.trade
  187. - signs.use.balance
  188. - signs.use.buy
  189. - signs.use.disposal
  190. - signs.use.enchant
  191. - signs.use.free
  192. - signs.use.gamemode
  193. - signs.use.heal
  194. - signs.use.info
  195. - signs.use.kit
  196. - signs.use.mail
  197. - signs.use.protection
  198. - signs.use.repair
  199. - signs.use.sell
  200. - signs.use.time
  201. - signs.use.trade
  202. - signs.use.warp
  203. - signs.use.weather
  204. - spawn
  205. - suicide
  206. - time
  207. - tpa
  208. - tpaccept
  209. - tpahere
  210. - tpdeny
  211. - warp
  212. - warp.list
  213. - world
  214. - worth
  215. - xmpp
  216.  
  217. # Note: All items MUST be followed by a quantity!
  218. # All kit names should be lower case, and will be treated as lower in permissions/costs.
  219. # Syntax: - itemID[:DataValue/Durability] Amount [Enchantment:Level].. [itemmeta:value]...
  220. # For Item meta information visit http://wiki.ess3.net/wiki/Item_Meta
  221. # 'delay' refers to the cooldown between how often you can use each kit, measured in seconds.
  222. # For more information, visit http://wiki.ess3.net/wiki/Kits
  223. kits:
  224. leather:
  225. delay: 60
  226. items:
  227. - 267 1
  228. - 261 1
  229. - 262 32
  230. - 297 5
  231. - 298 1
  232. - 299 1
  233. - 300 1
  234. - 301 1
  235. gold:
  236. delay: 60
  237. items:
  238. - 267 1
  239. - 261 1
  240. - 262 32
  241. - 297 5
  242. - 314 1
  243. - 315 1
  244. - 316 1
  245. - 317 1
  246. iron:
  247. delay: 60
  248. items:
  249. - 267 1
  250. - 261 1
  251. - 262 32
  252. - 297 5
  253. - 306 1
  254. - 307 1
  255. - 308 1
  256. - 309 1
  257. diamond:
  258. delay: 60
  259. items:
  260. - 267 1
  261. - 261 1
  262. - 262 32
  263. - 297 5
  264. - 310 1
  265. - 311 1
  266. - 312 1
  267. - 313 1
  268. op:
  269. delay: 60
  270. items:
  271. - 276 1 unbreaking:10 sharpness:10 fireaspect:10 smite:10 baneofathropods:10 knockback:10 looting:10
  272. - 261 1 unbreaking:10 power:10 punch:10 flame:10 infinity:10
  273. - 262 1
  274. - 310 1 protection:10 fireprotection:10 blastprotection:10 projectileprotection:10 respiration:10 aquaaffinity:10
  275. - 311 1 protection:10 fireprotection:10 blastprotection:10 projectileprotection:10 thorns:10
  276. - 312 1 protection:10 fireprotection:10 blastprotection:10 projectileprotection:10
  277. - 313 1 protection:10 fireprotection:10 blastprotection:10 projectileprotection:10 featherfalling:10
  278. zleather:
  279. delay: 60
  280. items:
  281. - 276 1
  282. - 261 1
  283. - 262 32
  284. - 297 5
  285. - 298 1
  286. - 299 1
  287. - 300 1
  288. - 301 1
  289. vleather:
  290. delay: 60
  291. items:
  292. - 276 1
  293. - 261 1
  294. - 262 32
  295. - 297 5
  296. - 298 1
  297. - 299 1
  298. - 300 1
  299. - 301 1
  300. sleather:
  301. delay: 60
  302. items:
  303. - 276 1
  304. - 261 1
  305. - 262 32
  306. - 297 5
  307. - 298 1
  308. - 299 1
  309. - 300 1
  310. - 301 1
  311. gleather:
  312. delay: 60
  313. items:
  314. - 276 1
  315. - 261 1
  316. - 262 32
  317. - 297 5
  318. - 298 1
  319. - 299 1
  320. - 300 1
  321. - 301 1
  322. bleather:
  323. delay: 60
  324. items:
  325. - 276 1
  326. - 261 1
  327. - 262 32
  328. - 297 5
  329. - 298 1
  330. - 299 1
  331. - 300 1
  332. - 301 1
  333. zgold:
  334. delay: 60
  335. items:
  336. - 267 1
  337. - 261 1
  338. - 262 32
  339. - 297 5
  340. - 314 1
  341. - 315 1
  342. - 316 1
  343. - 317 1
  344. vgold:
  345. delay: 60
  346. items:
  347. - 267 1
  348. - 261 1
  349. - 262 32
  350. - 297 5
  351. - 314 1
  352. - 315 1
  353. - 316 1
  354. - 317 1
  355. sgold:
  356. delay: 60
  357. items:
  358. - 267 1
  359. - 261 1
  360. - 262 32
  361. - 297 5
  362. - 314 1
  363. - 315 1
  364. - 316 1
  365. - 317 1
  366. ggold:
  367. delay: 60
  368. items:
  369. - 267 1
  370. - 261 1
  371. - 262 32
  372. - 297 5
  373. - 314 1
  374. - 315 1
  375. - 316 1
  376. - 317 1
  377. bgold:
  378. delay: 60
  379. items:
  380. - 267 1
  381. - 261 1
  382. - 262 32
  383. - 297 5
  384. - 314 1
  385. - 315 1
  386. - 316 1
  387. - 317 1
  388. ziron:
  389. delay: 60
  390. items:
  391. - 267 1
  392. - 261 1
  393. - 262 32
  394. - 297 5
  395. - 306 1
  396. - 307 1
  397. - 308 1
  398. - 309 1
  399. viron:
  400. delay: 60
  401. items:
  402. - 267 1
  403. - 261 1
  404. - 262 32
  405. - 297 5
  406. - 306 1
  407. - 307 1
  408. - 308 1
  409. - 309 1
  410. siron:
  411. delay: 60
  412. items:
  413. - 267 1
  414. - 261 1
  415. - 262 32
  416. - 297 5
  417. - 306 1
  418. - 307 1
  419. - 308 1
  420. - 309 1
  421. giron:
  422. delay: 60
  423. items:
  424. - 267 1
  425. - 261 1
  426. - 262 32
  427. - 297 5
  428. - 306 1
  429. - 307 1
  430. - 308 1
  431. - 309 1
  432. biron:
  433. delay: 60
  434. items:
  435. - 267 1
  436. - 261 1
  437. - 262 32
  438. - 297 5
  439. - 306 1
  440. - 307 1
  441. - 308 1
  442. - 309 1
  443. zdiamond:
  444. delay: 60
  445. items:
  446. - 267 1
  447. - 261 1
  448. - 262 32
  449. - 297 5
  450. - 310 1
  451. - 311 1
  452. - 312 1
  453. - 313 1
  454. vdiamond:
  455. delay: 60
  456. items:
  457. - 267 1
  458. - 261 1
  459. - 262 32
  460. - 297 5
  461. - 310 1
  462. - 311 1
  463. - 312 1
  464. - 313 1
  465. sdiamond:
  466. delay: 60
  467. items:
  468. - 267 1
  469. - 261 1
  470. - 262 32
  471. - 297 5
  472. - 310 1
  473. - 311 1
  474. - 312 1
  475. - 313 1
  476. gdiamond:
  477. delay: 60
  478. items:
  479. - 267 1
  480. - 261 1
  481. - 262 32
  482. - 297 5
  483. - 310 1
  484. - 311 1
  485. - 312 1
  486. - 313 1
  487. bdiamond:
  488. delay: 60
  489. items:
  490. - 267 1
  491. - 261 1
  492. - 262 32
  493. - 297 5
  494. - 310 1
  495. - 311 1
  496. - 312 1
  497. - 313 1
  498. donorsword:
  499. delay: 60
  500. items:
  501. - 276 1
  502. irontools:
  503. delay: 21600
  504. items:
  505. - 256 1
  506. - 257 1
  507. - 258 1
  508. food:
  509. delay: 43200
  510. items:
  511. - 364 2
  512. - 297 2
  513. - 320 2
  514. - 366 2
  515. potions:
  516. delay:
  517. items:
  518. - 373:8259
  519. - 373:8258
  520. - 373:8257
  521.  
  522. # Essentials Sign Control
  523. # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.
  524. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  525. # Essentials Colored sign support will be enabled when any sign types are enabled.
  526. # Color is not an actual sign, it's for enabling using color codes on signs, when the correct permissions are given.
  527.  
  528. enabledSigns:
  529. - color
  530. - balance
  531. - buy
  532. - sell
  533. - trade
  534. - free
  535. - disposal
  536. - warp
  537. - kit
  538. - mail
  539. - enchant
  540. - gamemode
  541. - heal
  542. - info
  543. - spawnmob
  544. - repair
  545. - time
  546. - weather
  547.  
  548. # How many times per second can Essentials signs be interacted with per player.
  549. # Values should be between 1-20, 20 being virtually no lag protection.
  550. # Lower numbers will reduce the possibility of lag, but may annoy players.
  551. sign-use-per-second: 4
  552.  
  553. # Backup runs a batch/bash command while saving is disabled.
  554. backup:
  555. # Interval in minutes.
  556. interval: 30
  557. # Unless you add a valid backup command or script here, this feature will be useless.
  558. # Use 'save-all' to simply force regular world saving without backup.
  559. #command: 'rdiff-backup World1 backups/World1'
  560.  
  561. # Set this true to enable permission per warp.
  562. per-warp-permission: false
  563.  
  564. # Sort output of /list command by groups.
  565. # You can hide and merge the groups displayed in /list by defining the desired behaviour here.
  566. # Detailed instructions and examples can be found on the wiki: http://wiki.ess3.net/wiki/List
  567. list:
  568. # To merge groups, list the groups you wish to merge
  569. #Staff: owner admin moderator
  570. Admins: owner admin
  571. # To limit groups, set a max user limit
  572. #builder: 20
  573. # To hide groups, set the group as hidden
  574. #default: hidden
  575. # Uncomment the line below to simply list all players with no grouping
  576. #Players: '*'
  577.  
  578. # More output to the console.
  579. debug: false
  580.  
  581. # Set the locale for all messages.
  582. # If you don't set this, the default locale of the server will be used.
  583. # For example, to set language to English, set locale to en, to use the file "messages_en.properties".
  584. # Don't forget to remove the # in front of the line.
  585. # For more information, visit http://wiki.ess3.net/wiki/Locale
  586. #locale: en
  587.  
  588. # Turn off god mode when people exit.
  589. remove-god-on-disconnect: false
  590.  
  591. # Auto-AFK
  592. # After this timeout in seconds, the user will be set as afk.
  593. # This feature requires the player to have essentials.afk.auto node.
  594. # Set to -1 for no timeout.
  595. auto-afk: 300
  596.  
  597. # Auto-AFK Kick
  598. # After this timeout in seconds, the user will be kicked from the server.
  599. # essentials.afk.kickexempt node overrides this feature.
  600. # Set to -1 for no timeout.
  601. auto-afk-kick: -1
  602.  
  603. # Set this to true, if you want to freeze the player, if he is afk.
  604. # Other players or monsters can't push him out of afk mode then.
  605. # This will also enable temporary god mode for the afk player.
  606. # The player has to use the command /afk to leave the afk mode.
  607. freeze-afk-players: false
  608.  
  609. # When the player is afk, should he be able to pickup items?
  610. # Enable this, when you don't want people idling in mob traps.
  611. disable-item-pickup-while-afk: false
  612.  
  613. # This setting controls if a player is marked as active on interaction.
  614. # When this setting is false, you will need to manually un-AFK using the /afk command.
  615. cancel-afk-on-interact: true
  616.  
  617. # Should we automatically remove afk status when the player moves?
  618. # Player will be removed from AFK on chat/command regardless of this setting.
  619. # Disable this to reduce server lag.
  620. cancel-afk-on-move: true
  621.  
  622. # You can disable the death messages of Minecraft here.
  623. death-messages: true
  624.  
  625. # Add worlds to this list, if you want to automatically disable god mode there.
  626. no-god-in-worlds:
  627. # - world_nether
  628.  
  629. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands.
  630. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  631. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  632. # This does not affect the /home command, there is a separate toggle below for this.
  633. world-teleport-permissions: false
  634.  
  635. # The number of items given if the quantity parameter is left out in /item or /give.
  636. # If this number is below 1, the maximum stack size size is given. If over-sized stacks.
  637. # are not enabled, any number higher than the maximum stack size results in more than one stack.
  638. default-stack-size: -1
  639.  
  640. # Over-sized stacks are stacks that ignore the normal max stack size.
  641. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  642. # How many items should be in an over-sized stack?
  643. oversized-stacksize: 64
  644.  
  645. # Allow repair of enchanted weapons and armor.
  646. # If you set this to false, you can still allow it for certain players using the permission.
  647. # essentials.repair.enchanted
  648. repair-enchanted: true
  649.  
  650. # Allow 'unsafe' enchantments in kits and item spawning.
  651. # Warning: Mixing and overleveling some enchantments can cause issues with clients, servers and plugins.
  652. unsafe-enchantments: true
  653.  
  654. #Do you want essentials to keep track of previous location for /back in the teleport listener?
  655. #If you set this to true any plugin that uses teleport will have the previous location registered.
  656. register-back-in-listener: false
  657.  
  658. #Delay to wait before people can cause attack damage after logging in.
  659. login-attack-delay: 5
  660.  
  661. #Set the max fly speed, values range from 0.1 to 1.0
  662. max-fly-speed: 0.8
  663.  
  664. #Set the max walk speed, values range from 0.1 to 1.0
  665. max-walk-speed: 0.8
  666.  
  667. #Set the maximum amount of mail that can be sent within a minute.
  668. mails-per-minute: 1000
  669.  
  670. # Set the maximum time /tempban can be used for in seconds.
  671. # Set to -1 to disable, and essentials.tempban.unlimited can be used to override.
  672. max-tempban-time: -1
  673.  
  674. ############################################################
  675. # +------------------------------------------------------+ #
  676. # | EssentialsHome | #
  677. # +------------------------------------------------------+ #
  678. ############################################################
  679.  
  680. # Allows people to set their bed at daytime.
  681. update-bed-at-daytime: true
  682.  
  683. # Set to true to enable per-world permissions for using homes to teleport between worlds.
  684. # This applies to the /home only.
  685. # Give someone permission to teleport to a world with essentials.worlds.<worldname>
  686. world-home-permissions: false
  687.  
  688. # Allow players to have multiple homes.
  689. # Players need essentials.sethome.multiple before they can have more than 1 home, defaults to 'default' below.
  690. # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
  691. # People with essentials.sethome.multiple.unlimited are not limited by these numbers.
  692. # For more information, visit http://wiki.ess3.net/wiki/Multihome
  693. sethome-multiple:
  694. supporter: 2
  695. supporter+: 3
  696. sponsor: 5
  697. moderator: 5
  698. vip: 5
  699. twitch: 5
  700. youtube: 5
  701. # essentials.sethome.multiple.vip
  702.  
  703. # essentials.sethome.multiple.staff
  704.  
  705.  
  706. # Set timeout in seconds for players to accept tpa before request is cancelled.
  707. # Set to 0 for no timeout.
  708. tpa-accept-cancellation: 120
  709.  
  710. ############################################################
  711. # +------------------------------------------------------+ #
  712. # | EssentialsEco | #
  713. # +------------------------------------------------------+ #
  714. ############################################################
  715.  
  716. # For more information, visit http://wiki.ess3.net/wiki/Essentials_Economy
  717.  
  718. # Defines the balance with which new players begin. Defaults to 0.
  719. starting-balance: 0
  720.  
  721. # worth-# defines the value of an item when it is sold to the server via /sell.
  722. # These are now defined in worth.yml
  723.  
  724. # Defines the cost to use the given commands PER USE.
  725. # Some commands like /repair have sub-costs, check the wiki for more information.
  726. command-costs:
  727. # /example costs $1000 PER USE
  728. #example: 1000
  729. # /kit tools costs $1500 PER USE
  730. #kit-tools: 1500
  731.  
  732. # Set this to a currency symbol you want to use.
  733. currency-symbol: '$'
  734.  
  735. # Set the maximum amount of money a player can have.
  736. # The amount is always limited to 10 trillion because of the limitations of a java double.
  737. max-money: 10000000000000
  738.  
  739. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  740. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  741. min-money: 0
  742.  
  743. # Enable this to log all interactions with trade/buy/sell signs and sell command.
  744. economy-log-enabled: false
  745.  
  746. ############################################################
  747. # +------------------------------------------------------+ #
  748. # | EssentialsHelp | #
  749. # +------------------------------------------------------+ #
  750. ############################################################
  751.  
  752. # Show other plugins commands in help.
  753. non-ess-in-help: true
  754.  
  755. # Hide plugins which do not give a permission.
  756. # You can override a true value here for a single plugin by adding a permission to a user/group.
  757. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.
  758. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.
  759. hide-permissionless-help: true
  760.  
  761. ############################################################
  762. # +------------------------------------------------------+ #
  763. # | EssentialsChat | #
  764. # +------------------------------------------------------+ #
  765. ############################################################
  766.  
  767. chat:
  768.  
  769. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  770. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  771. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  772. # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  773. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  774. radius: 0
  775.  
  776. # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  777. # Or you can give a group specific chat format, to give some extra variation.
  778. # If set to the default chat format which "should" be compatible with ichat.
  779. # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting
  780.  
  781. #format: '<{DISPLAYNAME}> {MESSAGE}'
  782. #format: '[{GROUP}] {DISPLAYNAME}&7:&r {MESSAGE}'
  783.  
  784. group-formats:
  785. Member: '&7[&9Member&7]&7{DISPLAYNAME}&7: &7{MESSAGE}'
  786. Supporter: '&7[&2Supporter&7]&7{DISPLAYNAME}&7: &7{MESSAGE}'
  787. Supporter+: '&7[&2Supporter&4+&7]&7{DISPLAYNAME}&7: &7{MESSAGE}'
  788. Sponsor: '&7[&eSponsor&7]&7{DISPLAYNAME}&7: &7{MESSAGE}'
  789. Twitch: '&7[&5Twitch&7]&7{DISPLAYNAME}&7: &7{MESSAGE}'
  790. YouTube: '&7[&cYou&fTube&7]&7{DISPLAYNAME}&7: &7{MESSAGE}'
  791. VIP: '&7[&9V.I.P&7]&7{DISPLAYNAME}&7: &f{MESSAGE}'
  792. Trial-Moderator: '&7[Trial-&dMod&7]&7{DISPLAYNAME}&7: &c{MESSAGE}'
  793. Moderator: '&7[&dModerator&7]&7{DISPLAYNAME}&7: &c{MESSAGE}'
  794. Admin: '&7[&cAdmin&7]&7{DISPLAYNAME}&7: &6{MESSAGE}'
  795. Owner: '&7[&4Owner&7]&7{DISPLAYNAME}&7: &6{MESSAGE}'
  796.  
  797. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  798.  
  799. ############################################################
  800. # +------------------------------------------------------+ #
  801. # | EssentialsProtect | #
  802. # +------------------------------------------------------+ #
  803. ############################################################
  804.  
  805. protect:
  806.  
  807. # General physics/behavior modifications.
  808. prevent:
  809. lava-flow: false
  810. water-flow: false
  811. water-bucket-flow: false
  812. fire-spread: true
  813. lava-fire-spread: true
  814. flint-fire: false
  815. lightning-fire-spread: true
  816. portal-creation: false
  817. tnt-explosion: false
  818. tnt-playerdamage: false
  819. tnt-minecart-explosion: false
  820. tnt-minecart-playerdamage: false
  821. fireball-explosion: false
  822. fireball-fire: false
  823. fireball-playerdamage: false
  824. witherskull-explosion: false
  825. witherskull-playerdamage: false
  826. wither-spawnexplosion: false
  827. wither-blockreplace: false
  828. creeper-explosion: false
  829. creeper-playerdamage: false
  830. creeper-blockdamage: false
  831. enderdragon-blockdamage: true
  832. enderman-pickup: false
  833. villager-death: false
  834. # Monsters won't follow players.
  835. # permission essentials.protect.entitytarget.bypass disables this.
  836. entitytarget: false
  837. # Prevent the spawning of creatures.
  838. spawn:
  839. creeper: false
  840. skeleton: false
  841. spider: false
  842. giant: false
  843. zombie: false
  844. slime: false
  845. ghast: false
  846. pig_zombie: false
  847. enderman: false
  848. cave_spider: false
  849. silverfish: false
  850. blaze: false
  851. magma_cube: false
  852. ender_dragon: false
  853. pig: false
  854. sheep: false
  855. cow: false
  856. chicken: false
  857. squid: false
  858. wolf: false
  859. mushroom_cow: false
  860. snowman: false
  861. ocelot: false
  862. iron_golem: false
  863. villager: false
  864. wither: false
  865. bat: false
  866. witch: false
  867. horse: false
  868.  
  869. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  870. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  871. creeper:
  872. max-height: -1
  873.  
  874. # Disable various default physics and behaviors.
  875. disable:
  876. # Should fall damage be disabled?
  877. fall: false
  878.  
  879. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  880. # They will be unable to attack users without that same permission node.
  881. pvp: false
  882.  
  883. # Should drowning damage be disabled?
  884. # (Split into two behaviors; generally, you want both set to the same value.)
  885. drown: false
  886. suffocate: false
  887.  
  888. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  889. lavadmg: false
  890.  
  891. # Should arrow damage be disabled?
  892. projectiles: false
  893.  
  894. # This will disable damage from touching cacti.
  895. contactdmg: false
  896.  
  897. # Burn, baby, burn! Should fire damage be disabled?
  898. firedmg: false
  899.  
  900. # Should the damage after hit by a lightning be disabled?
  901. lightning: false
  902.  
  903. # Should Wither damage be disabled?
  904. wither: false
  905.  
  906. # Disable weather options?
  907. weather:
  908. storm: false
  909. thunder: false
  910. lightning: false
  911.  
  912. ############################################################
  913. # +------------------------------------------------------+ #
  914. # | EssentialsAntiBuild | #
  915. # +------------------------------------------------------+ #
  916. ############################################################
  917.  
  918. # Disable various default physics and behaviors
  919. # For more information, visit http://wiki.ess3.net/wiki/AntiBuild
  920.  
  921. # Should people with build: false in permissions be allowed to build?
  922. # Set true to disable building for those people.
  923. # Setting to false means EssentialsAntiBuild will never prevent you from building.
  924. build: true
  925.  
  926. # Should people with build: false in permissions be allowed to use items?
  927. # Set true to disable using for those people.
  928. # Setting to false means EssentialsAntiBuild will never prevent you from using.
  929. use: true
  930.  
  931. # Should we tell people they are not allowed to build?
  932. warn-on-build-disallow: true
  933.  
  934. # For which block types would you like to be alerted?
  935. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  936. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  937. alert:
  938. on-placement: 10,11,46,327
  939. on-use: 327
  940. on-break:
  941.  
  942. blacklist:
  943.  
  944. # Which blocks should people be prevented from placing?
  945. placement: 10,11,46,327
  946.  
  947. # Which items should people be prevented from using?
  948. usage: 327
  949.  
  950. # Which blocks should people be prevented from breaking?
  951. break:
  952.  
  953. # Which blocks should not be pushed by pistons?
  954. piston:
  955.  
  956. # Which blocks should not be dispensed by dispensers
  957. dispenser:
  958.  
  959. ############################################################
  960. # +------------------------------------------------------+ #
  961. # | Essentials Spawn / New Players | #
  962. # +------------------------------------------------------+ #
  963. ############################################################
  964.  
  965. newbies:
  966. # Should we announce to the server when someone logs in for the first time?
  967. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  968. # If not, set to ''
  969. #announce-format: ''
  970. announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
  971.  
  972. # When we spawn for the first time, which spawnpoint do we use?
  973. # Set to "none" if you want to use the spawn point of the world.
  974. spawnpoint: newbies
  975.  
  976. # Do we want to give users anything on first join? Set to '' to disable
  977. # This kit will be given regardless of cost, and permissions.
  978. #kit: ''
  979. kit: tools
  980.  
  981. # Set this to lowest, if you want Multiverse to handle the respawning.
  982. # Set this to high, if you want EssentialsSpawn to handle the respawning.
  983. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning.
  984. respawn-listener-priority: high
  985.  
  986. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  987. respawn-at-home: false
  988.  
  989. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement