Advertisement
gizmobrat

/plugins/Essentials/config.yml

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