Advertisement
Guest User

Untitled

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