Advertisement
Guest User

Essentialsconfig

a guest
Nov 20th, 2012
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.58 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 apostrphe)
  12. # - List items are prefixed with a hyphen and indented:
  13. # lists:
  14. # - look like this
  15. # not:
  16. # - like this
  17. # - Text with symbols is enclosed in single or double quotation marks
  18. # - CraftBukkit and Permissions have been updated: CraftBukkit and Essentials almost always line up, but sometimes other plugins fall behind CraftBukkit's multiple daily updates
  19. # - You have saved the document as UTF-8, NOT the default, ANSI
  20.  
  21. ############################################################
  22. # +------------------------------------------------------+ #
  23. # | Essentials (Global) | #
  24. # +------------------------------------------------------+ #
  25. ############################################################
  26.  
  27. # A color code between 0-9 or a-f. Set to 'none' to disable.
  28. ops-name-color: 'c'
  29.  
  30. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  31. nickname-prefix: '~'
  32.  
  33. # Disable this if you have any other plugin, that modifies the displayname of a user.
  34. change-displayname: true
  35.  
  36. # When this option is enabled, the (tab) player list will be updated with the displayname.
  37. # The value of change-displayname (above) has to be true.
  38. #change-playerlist: true
  39.  
  40. # Adds the prefix and suffix to the displayname of the player, so it will be displayed in messages and lists.
  41. # The prefix/suffix can be set using Permissions, Group Manager or PermissionsEx.
  42. # The value of change-displayname (above) has to be true.
  43. # If you don't set this, it will default to true if essentials chat is installed.
  44. # Don't forget to remove the # in front of the line
  45. #add-prefix-suffix: false
  46.  
  47. # The delay, in seconds, required between /home, /tp, etc.
  48. teleport-cooldown: 0
  49.  
  50. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  51. teleport-delay: 0
  52.  
  53. # The delay, in seconds, a player can't be attacked by other players after he has been teleported by a command
  54. # This will also prevent that the player can attack other players
  55. teleport-invulnerability: 2
  56.  
  57. # The delay, in seconds, required between /heal attempts
  58. heal-cooldown: 60
  59.  
  60. # What to prevent from /i /give
  61. # e.g item-spawn-blacklist: 46,11,10
  62. item-spawn-blacklist:
  63.  
  64. # Set this to true if you want permission based item spawn rules
  65. # Note: The blacklist above will be ignored then.
  66. # Permissions:
  67. # - essentials.itemspawn.item-all
  68. # - essentials.itemspawn.item-[itemname]
  69. # - essentials.itemspawn.item-[itemid]
  70. # - essentials.give.item-all
  71. # - essentials.give.item-[itemname]
  72. # - essentials.give.item-[itemid]
  73. permission-based-item-spawn: false
  74.  
  75. # Mob limit on spawnmob
  76. spawnmob-limit: 100
  77.  
  78. # Shall we notify users when using /lightning
  79. warn-on-smite: true
  80.  
  81. # motd and rules are now configured in the files motd.txt and rules.txt
  82.  
  83. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
  84. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
  85. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
  86. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
  87. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
  88. # such as /egod, will always grant Essentials priority.
  89. # We should try to take priority over /god. If this doesn't work, use
  90. # /essentials:god or /egod. If god is set using WorldGuard, use /ungod to remove then use whichever you see fit.
  91. overridden-commands:
  92.  
  93. # Disabled commands will be completely unavailable on the server.
  94. disabled-commands:
  95. - home
  96. - sethome
  97. - spawn
  98. - setspawn
  99. - balance
  100. - balance.others
  101. - balancetop
  102. - signs.create.protection
  103. - signs.create.trade
  104. - signs.break.protection
  105. - signs.break.trade
  106. - signs.use.balance
  107. - signs.use.buy
  108. - signs.use.disposal
  109. - signs.use.enchant
  110. - signs.use.free
  111. - signs.use.gamemode
  112. - signs.use.heal
  113. - signs.use.info
  114. - signs.use.kit
  115. - signs.use.mail
  116. - signs.use.protection
  117. - signs.use.repair
  118. - signs.use.sell
  119. - signs.use.time
  120. - signs.use.trade
  121. - signs.use.warp
  122. - signs.use.weather
  123. - kit
  124. - kit.tools
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131. # Restricted commands have been removed.
  132. # Now we have a whitelist, all commands not on this list are only available to ops.
  133. # These will have NO EFFECT if you have Permissions installed!
  134. # They are here only if you want something simpler than Permissions.
  135. # These are the permissions without the "essentials." part.
  136. player-commands:
  137. - afk
  138. - back
  139. - back.ondeath
  140. - balance
  141. - balance.others
  142. - balancetop
  143. - chat.color
  144. - chat.format
  145. - chat.shout
  146. - chat.question
  147. - clearinventory
  148. - compass
  149. - depth
  150. - delhome
  151. - getpos
  152. - geoip.show
  153. - help
  154. - helpop
  155. - home
  156. - home.others
  157. - ignore
  158. - info
  159. - itemdb
  160. - kit
  161. - kit.tools
  162. - list
  163. - mail
  164. - mail.send
  165. - me
  166. - motd
  167. - msg
  168. - msg.color
  169. - nick
  170. - near
  171. - pay
  172. - ping
  173. - powertool
  174. - powertooltoggle
  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] Amount [Enchantment:Level]..
  220. # 'delay' refers to the cooldown between how often you can use each kit, measured in seconds.
  221. kits:
  222. dtools:
  223. delay: 10
  224. items:
  225. - 277 1 efficiency:1
  226. - 278 1
  227. - 279:780 1
  228. tools:
  229. delay: 10
  230. items:
  231. - 272 1
  232. - 273 1
  233. - 274 1
  234. - 275 1
  235. - 4 64
  236. - 17 20
  237.  
  238. # Essentials Sign Control
  239. # See http://ess.khhq.net/wiki/Sign_Tutorial for instructions on how to use these.
  240. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  241. # Essentials Colored sign support will be enabled when any sign types are enabled.
  242. # We recommend not enabling chest protection signs if you don't intend to use them, (or are using LWC/Lockette).
  243.  
  244. enabledSigns:
  245. #- color
  246. #- balance
  247. #- buy
  248. #- sell
  249. #- trade
  250. #- free
  251. #- disposal
  252. #- warp
  253. #- kit
  254. #- mail
  255. #- enchant
  256. #- gamemode
  257. #- heal
  258. #- info
  259. #- spawnmob
  260. #- repair
  261. #- time
  262. #- weather
  263. #- protection
  264.  
  265.  
  266. # How many times per second can Essentials signs be interacted with.
  267. # Values should be between 1-20, 20 being virtually no lag protection.s
  268. # Lower numbers will reduce the possibility of lag, but may annoy players.
  269. sign-use-per-second: 4
  270.  
  271. # Backup runs a command while saving is disabled
  272. backup:
  273. # Interval in minutes
  274. interval: 30
  275. # Unless you add a valid backup command or script here, this feature will be useless.
  276. # Use 'save-all' to simply force regular world saving without backup.
  277. #command: 'rdiff-backup World1 backups/World1'
  278.  
  279. # Set this true to enable permission per warp.
  280. per-warp-permission: false
  281.  
  282. # Sort output of /list command by groups
  283. sort-list-by-groups: false
  284.  
  285. # More output to the console
  286. debug: false
  287.  
  288. # Set the locale for all messages
  289. # If you don't set this, the default locale of the server will be used.
  290. # Don't forget to remove the # infront of the line
  291. locale: de_DE
  292.  
  293. # Turn off god mode when people exit
  294. remove-god-on-disconnect: false
  295.  
  296. # Use the permission system of bukkit
  297. # This only works if no other permission plugins are installed
  298. use-bukkit-permissions: false
  299.  
  300. # Auto-AFK
  301. # After this timeout in seconds, the user will be set as afk.
  302. # Set to -1 for no timeout.
  303. auto-afk: 120
  304.  
  305. # Auto-AFK Kick
  306. # After this timeout in seconds, the user will be kicked from the server.
  307. # Set to -1 for no timeout.
  308. auto-afk-kick: -1
  309.  
  310. # Set this to true, if you want to freeze the player, if he is afk.
  311. # Other players or monsters can't push him out of afk mode then.
  312. # This will also enable temporary god mode for the afk player.
  313. # The player has to use the command /afk to leave the afk mode.
  314. freeze-afk-players: false
  315.  
  316. # When the player is afk, should he be able to pickup items?
  317. # Enable this, when you don't want people idling in mob traps.
  318. disable-item-pickup-while-afk: false
  319.  
  320. # Should we automatically remove afk status when the player moves?
  321. # Player will be removed from afk on chat/command reguardless of this setting.
  322. # Disable this to reduce server lag.
  323. cancel-afk-on-move: true
  324.  
  325. # You can disable the death messages of minecraft here
  326. death-messages: true
  327.  
  328. # Add worlds to this list, if you want to automatically disable god mode there
  329. no-god-in-worlds:
  330. # - world_nether
  331.  
  332. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands
  333. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  334. # Give someone permission to teleport to a world with essentials.world.<worldname>
  335. world-teleport-permissions: false
  336.  
  337. # The number of items given if the quantity parameter is left out in /item or /give.
  338. # If this number is below 1, the maximum stack size size is given. If oversized stacks
  339. # is not enabled, any number higher then the maximum stack size results in more than one stack.
  340. default-stack-size: -1
  341.  
  342. # Oversized stacks are stacks that ignore the normal max stacksize.
  343. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  344. # How many items should be in an oversized stack?
  345. oversized-stacksize: 64
  346.  
  347. # Do you allow to repair enchanted weapons and armor?
  348. # If you set this to false, you can still allow it for certain players using the permission
  349. # essentials.repair.enchanted
  350. repair-enchanted: true
  351.  
  352. #Do you want essentials to keep track of previous location for /back in the teleport listener?
  353. #If you set this to true any plugin that uses teleport will have the previous location registered.
  354. register-back-in-listener: false
  355.  
  356. #Delay to wait before people can cause attack damage after logging in
  357. login-attack-delay: 5
  358.  
  359. ############################################################
  360. # +------------------------------------------------------+ #
  361. # | EssentialsHome | #
  362. # +------------------------------------------------------+ #
  363. ############################################################
  364.  
  365. # If no home is set, send players to spawn when /home is used
  366. spawn-if-no-home: true
  367.  
  368. # Allows people to set their bed at daytime
  369. update-bed-at-daytime: true
  370.  
  371. # Set to true to enable per-world permissions for using homes to teleport between worlds
  372. # This applies to the /home only.
  373. # Give someone permission to teleport to a world with essentials.world.<worldname>
  374. world-home-permissions: true
  375.  
  376. # Allow players to have multiple homes.
  377. # Players need essentials.sethome.multiple before they can have more than 1 home, default to 'default' below.
  378. # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
  379. # People with essentials.sethome.multiple.unlimited are not limited by these numbers.
  380. sethome-multiple:
  381. default: 3
  382. # essentials.sethome.multiple.vip
  383. vip: 5
  384. # essentials.sethome.multiple.staff
  385. staff: 10
  386.  
  387. # Set timeout in seconds for players to accept tpa before request is cancelled.
  388. # Set to 0 for no timeout
  389. tpa-accept-cancellation: 0
  390.  
  391. ############################################################
  392. # +------------------------------------------------------+ #
  393. # | EssentialsEco | #
  394. # +------------------------------------------------------+ #
  395. ############################################################
  396.  
  397. # Defines the balance with which new players begin. Defaults to 0.
  398. starting-balance: 0
  399.  
  400. # worth-# defines the value of an item when it is sold to the server via /sell.
  401. # These are now defined in worth.yml
  402.  
  403. # Defines the cost to use the given commands PER USE
  404. command-costs:
  405. # /example costs $1000 PER USE
  406. #example: 1000
  407. # /kit tools costs $1500 PER USE
  408. #kit-tools: 1500
  409.  
  410. # Set this to a currency symbol you want to use.
  411. currency-symbol: '$'
  412.  
  413. # Set the maximum amount of money a player can have
  414. # The amount is always limited to 10 trillions because of the limitations of a java double
  415. max-money: 10000000000000
  416.  
  417. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  418. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  419. min-money: -10000
  420.  
  421. # Enable this to log all interactions with trade/buy/sell signs and sell command
  422. economy-log-enabled: false
  423.  
  424. ############################################################
  425. # +------------------------------------------------------+ #
  426. # | EssentialsHelp | #
  427. # +------------------------------------------------------+ #
  428. ############################################################
  429.  
  430. # Show other plugins commands in help
  431. non-ess-in-help: true
  432.  
  433. # Hide plugins which do not give a permission
  434. # You can override a true value here for a single plugin by adding a permission to a user/group.
  435. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help this setting reguardless.
  436. # You can use negitive permissions to remove access to just a single plugins help if the following is enabled.
  437. hide-permissionless-help: true
  438.  
  439. ############################################################
  440. # +------------------------------------------------------+ #
  441. # | EssentialsChat | #
  442. # +------------------------------------------------------+ #
  443. ############################################################
  444.  
  445. chat:
  446.  
  447. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  448. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  449. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  450. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  451. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  452. radius: 0
  453.  
  454. # Chat formatting can be done in two ways, you can either define a standard format for all chat
  455. # Or you can give a group specific chat format, to give some extra variation.
  456. # If set to the default chat format which "should" be compatible with ichat.
  457. # For more information of chat formatting, check out the wiki: http://ess.khhq.net/wiki/Chat_Formatting
  458.  
  459. format: '<{DISPLAYNAME}> {MESSAGE}'
  460. #format: '&7[{GROUP}]&f {DISPLAYNAME}&7: {MESSAGE}'
  461.  
  462. group-formats:
  463. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&f {MESSAGE}'
  464. # Admins: '{WORLDNAME} &c[{GROUP}]&f {DISPLAYNAME}&7:&c {MESSAGE}'
  465.  
  466. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  467.  
  468. ############################################################
  469. # +------------------------------------------------------+ #
  470. # | EssentialsProtect | #
  471. # +------------------------------------------------------+ #
  472. ############################################################
  473.  
  474. protect:
  475. # Database settings for sign/rail protection
  476.  
  477. # mysql or sqlite
  478. # We strongly recommend against using mysql here, unless you have a good reason.
  479. # Sqlite seems to be faster in almost all cases, and in some cases mysql can be much slower.
  480. datatype: 'sqlite'
  481.  
  482. # If you specified MySQL above, you MUST enter the appropriate details here.
  483. # If you specified SQLite above, these will be IGNORED.
  484. username: 'root'
  485. password: 'root'
  486. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  487.  
  488. # For which block types would you like to be alerted?
  489. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  490. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  491. alert:
  492. on-placement: 10,11,46,327
  493. on-use: 327
  494. on-break:
  495.  
  496. blacklist:
  497.  
  498. # Which blocks should people be prevented from placing
  499. placement: 10,11,46,327
  500.  
  501. # Which items should people be prevented from using
  502. usage: 327
  503.  
  504. # Which blocks should people be prevented from breaking
  505. break:
  506.  
  507. # Which blocks should not be pushed by pistons
  508. piston:
  509.  
  510. # General physics/behavior modifications
  511. prevent:
  512. lava-flow: false
  513. water-flow: false
  514. water-bucket-flow: false
  515. fire-spread: true
  516. lava-fire-spread: true
  517. flint-fire: false
  518. lightning-fire-spread: true
  519. portal-creation: false
  520. tnt-explosion: false
  521. tnt-playerdamage: false
  522. fireball-explosion: false
  523. fireball-fire: false
  524. fireball-playerdamage: false
  525. creeper-explosion: false
  526. creeper-playerdamage: false
  527. creeper-blockdamage: false
  528. enderdragon-blockdamage: true
  529. enderman-pickup: false
  530. villager-death: false
  531. # Monsters won't follow players
  532. # permission essentials.protect.entitytarget.bypass disables this
  533. entitytarget: false
  534. # Prevent the spawning of creatures
  535. spawn:
  536. creeper: false
  537. skeleton: false
  538. spider: false
  539. giant: false
  540. zombie: false
  541. slime: false
  542. ghast: false
  543. pig_zombie: false
  544. enderman: false
  545. cave_spider: false
  546. silverfish: false
  547. blaze: false
  548. magma_cube: false
  549. ender_dragon: false
  550. pig: false
  551. sheep: false
  552. cow: false
  553. chicken: false
  554. squid: false
  555. wolf: false
  556. mushroom_cow: false
  557. snowman: false
  558. ocelot: false
  559. iron_golem: false
  560. villager: false
  561.  
  562. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  563. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  564. creeper:
  565. max-height: -1
  566.  
  567. # Protect various blocks.
  568. protect:
  569. # Protect all signs
  570. signs: true
  571.  
  572. # Prevent users from destroying rails
  573. rails: true
  574.  
  575. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  576. # This makes it more difficult to circumvent protection, and should be enabled.
  577. # This only has an effect if "rails" or "signs" is also enabled.
  578. block-below: true
  579.  
  580. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  581. prevent-block-on-rails: false
  582.  
  583. # Store blocks / signs in memory before writing
  584. memstore: false
  585.  
  586. # Disable various default physics and behaviors
  587. disable:
  588. # Should fall damage be disabled?
  589. fall: false
  590.  
  591. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  592. # They will be unable to attack users without that same permission node.
  593. pvp: false
  594.  
  595. # Should drowning damage be disabled?
  596. # (Split into two behaviors; generally, you want both set to the same value)
  597. drown: false
  598. suffocate: false
  599.  
  600. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  601. lavadmg: false
  602.  
  603. # Should arrow damage be disabled
  604. projectiles: false
  605.  
  606. # This will disable damage from touching cacti.
  607. contactdmg: false
  608.  
  609. # Burn, baby, burn! Should fire damage be disabled?
  610. firedmg: false
  611.  
  612. # Should the damage after hit by a lightning be disabled?
  613. lightning: false
  614.  
  615. # Should people with build: false in permissions be allowed to build
  616. # Set true to disable building for those people
  617. build: true
  618.  
  619. # Should people with build: false in permissions be allowed to use items
  620. # Set true to disable using for those people
  621. use: true
  622.  
  623. # Should we tell people they are not allowed to build
  624. warn-on-build-disallow: true
  625.  
  626. # Disable weather options
  627. weather:
  628. storm: false
  629. thunder: false
  630. lightning: false
  631.  
  632. ############################################################
  633. # +------------------------------------------------------+ #
  634. # | Essentials Spawn / New Players | #
  635. # +------------------------------------------------------+ #
  636. ############################################################
  637.  
  638. newbies:
  639. # Should we announce to the server when someone logs in for the first time?
  640. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  641. # If not, set to ''
  642. #announce-format: ''
  643. announce-format: '&5{DISPLAYNAME} Betritt den Server das 1. Mal!'
  644.  
  645. # When we spawn for the first time, which spawnpoint do we use?
  646. # Set to "none" if you want to use the spawn point of the world.
  647. spawnpoint: none
  648.  
  649. # Do we want to give users anything on first join? Set to '' to disable
  650. # This kit will be given regardless of cost, and permissions.
  651. #kit: ''
  652. kit: ''
  653.  
  654. # Set this to lowest, if you want Multiverse to handle the respawning
  655. # Set this to high, if you want EssentialsSpawn to handle the respawning
  656. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning
  657. respawn-listener-priority: lowest
  658.  
  659. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  660. respawn-at-home: false
  661.  
  662. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement