Advertisement
Guest User

essentials

a guest
Dec 30th, 2011
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.66 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 heirarchy 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. ############################################################
  24. # +------------------------------------------------------+ #
  25. # | Essentials (Global) | #
  26. # +------------------------------------------------------+ #
  27. ############################################################
  28.  
  29. # A color code between 0-9 or a-f. Set to 'none' to disable.
  30. ops-name-color: '6'
  31.  
  32. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  33. nickname-prefix: ''
  34.  
  35. # Disable this if you have any other plugin, that modifies the displayname of a user.
  36. change-displayname: true
  37.  
  38. # Adds the prefix and suffix to the displayname of the player, so it will be displayed in messages and lists.
  39. # The prefix/suffix can be set using Permissions, Group Manager or PermissionsEx.
  40. # The value of change-displayname (above) has to be true.
  41. # If you don't set this, it will default to true if essentials chat is installed.
  42. # Don't forget to remove the # infront of the line
  43. add-prefix-suffix: false
  44.  
  45. # The delay, in seconds, required between /home, /tp, etc.
  46. teleport-cooldown: 0
  47.  
  48. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  49. teleport-delay: 0
  50.  
  51. # The delay, in seconds, required between /heal attempts
  52. heal-cooldown: 60
  53.  
  54. # What to prevent from /i /give
  55. # e.g item-spawn-blacklist: 46,11,10
  56. item-spawn-blacklist:
  57.  
  58. # Set this to true if you want permission based item spawn rules
  59. # Note: The blacklist above will be ignored then.
  60. # Permissions:
  61. # - essentials.itemspawn.item-all
  62. # - essentials.itemspawn.item-[itemname]
  63. # - essentials.itemspawn.item-[itemid]
  64. # - essentials.give.item-all
  65. # - essentials.give.item-[itemname]
  66. # - essentials.give.item-[itemid]
  67. permission-based-item-spawn: false
  68.  
  69. # Mob limit on spawnmob
  70. spawnmob-limit: 20
  71.  
  72. # Shall we notify users when using /lightning
  73. warn-on-smite: true
  74.  
  75. # motd and rules are now configured in the files motd.txt and rules.txt
  76.  
  77. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
  78. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
  79. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
  80. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
  81. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
  82. # such as /egod, will always grant Essentials priority.
  83. # We should try to take priority over /god. If this doesn't work, use
  84. # /essentials:god or /egod. If god is set using WorldGuard, use /ungod to remove then use whichever you see fit.
  85. overridden-commands:
  86. - god
  87.  
  88. # Disabled commands will be completelly unavailable on the server.
  89. disabled-commands:
  90. # - nick
  91.  
  92. # Restricted commands have been removed.
  93. # Now we have a whitelist, all commands not on this list are only available to ops.
  94. # These will have NO EFFECT if you have Permissions installed!
  95. # They are here only if you want something simpler than Permissions.
  96. # These are the permissions without the "essentials." part.
  97. player-commands:
  98. - afk
  99. - back
  100. - back.ondeath
  101. - balance
  102. - clearinventory
  103. - compass
  104. - depth
  105. - getpos
  106. - geoip.show
  107. - help
  108. - helpop
  109. - home
  110. - home.others
  111. - ignore
  112. - info
  113. - kit
  114. - list
  115. - mail
  116. - mail.send
  117. - me
  118. - motd
  119. - msg
  120. - nick
  121. - pay
  122. - ping
  123. - powertool
  124. - protect
  125. - r
  126. - rules
  127. - seen
  128. - sell
  129. - sethome
  130. - setxmpp
  131. - signs.create.protection
  132. - signs.create.trade
  133. - signs.break.protection
  134. - signs.break.trade
  135. - signs.use.balance
  136. - signs.use.buy
  137. - signs.use.disposal
  138. - signs.use.free
  139. - signs.use.heal
  140. - signs.use.mail
  141. - signs.use.protection
  142. - signs.use.sell
  143. - signs.use.time
  144. - signs.use.trade
  145. - signs.use.warp
  146. - signs.use.weather
  147. - spawn
  148. - suicide
  149. - tpa
  150. - tpaccept
  151. - tpahere
  152. - tpdeny
  153. - warp
  154. - warp.list
  155. - world
  156. - worth
  157. - xmpp
  158.  
  159. # Note: All items MUST be followed by a quantity!
  160. # Times are measured in seconds.
  161. kits:
  162.  
  163. # Disable all signs
  164. signs-disabled: false
  165.  
  166. # Backup runs a command while saving is disabled
  167. backup:
  168. # Interval in minutes
  169. interval: 60
  170. # Add a command that backups your data, e.g.
  171. #command: 'rdiff-backup World1 backups/World1'
  172.  
  173. # Set this true to enable permission per warp.
  174. per-warp-permission: false
  175.  
  176. # Sort output of /list command by groups
  177. sort-list-by-groups: true
  178.  
  179. # More output to the console
  180. debug: false
  181.  
  182. # Set the locale for all messages
  183. # If you don't set this, the default locale of the server will be used.
  184. # Don't forget to remove the # infront of the line
  185. locale: de_DE
  186.  
  187. # Turn off god mode when people exit
  188. remove-god-on-disconnect: true
  189.  
  190. # Use the permission system of bukkit
  191. # This only works if no other permission plugins are installed
  192. use-bukkit-permissions: false
  193.  
  194. # Auto-AFK
  195. # After this timeout in seconds, the user will be set as afk.
  196. # Set to -1 for no timeout.
  197. auto-afk: -1
  198.  
  199. # Auto-AFK Kick
  200. # After this timeout in seconds, the user will be kicked from the server.
  201. # Set to -1 for no timeout.
  202. auto-afk-kick: -1
  203.  
  204. # Set this to true, if you want to freeze the player, if he is afk.
  205. # Other players or monsters can't push him out of afk mode then.
  206. # This will also enable temporary god mode for the afk player.
  207. # The player has to use the command /afk to leave the afk mode.
  208. freeze-afk-players: false
  209.  
  210. # When the player is afk, should he be able to pickup items?
  211. # Enable this, when you don't want people idling in mob traps.
  212. disable-item-pickup-while-afk: true
  213.  
  214. # You can disable the death messages of minecraft here
  215. death-messages: true
  216.  
  217. # Add worlds to this list, if you want to automatically disable god mode there
  218. no-god-in-worlds:
  219.  
  220. # Set to true to enable per-world permissions for teleporting with /world
  221. # Give someone permission to teleport to a world with essentials.world.<worldname>
  222. world-teleport-permissions: false
  223.  
  224. # The number of items given if the quantity parameter is left out in /item or /give.
  225. # If this number is below 1, the maximum stack size size is given. If oversized stacks
  226. # is not enabled, any number higher then the maximum stack size results in more than one stack.
  227. default-stack-size: -1
  228.  
  229. # Oversized stacks are stacks that ignore the normal max stacksize.
  230. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  231. # How many items should be in a oversized stack?
  232. oversized-stacksize: 64
  233.  
  234. # Do you allow to repair enchanted weapons and armor?
  235. # If you set this to false, you can still allow it for certain players using the permission
  236. # essentials.repair.enchanted
  237. repair-enchanted: true
  238.  
  239. #Do you want essentials to keep track of previous location for /back in the teleport listener?
  240. #If you set this to true any plugin that uses teleport will have the previous location registered.
  241. register-back-in-listener: false
  242.  
  243. ############################################################
  244. # +------------------------------------------------------+ #
  245. # | EssentialsHome | #
  246. # +------------------------------------------------------+ #
  247. ############################################################
  248.  
  249. # When users die, should they respawn at their first home, instead of the spawnpoint or bed?
  250. respawn-at-home: false
  251.  
  252. # If no home is set send you to bed or spawn when /home is used
  253. spawn-if-no-home: true
  254.  
  255. # Allows people to set their bed at daytime
  256. update-bed-at-daytime: true
  257.  
  258. # Allow players to have multiple homes.
  259. # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
  260. # People with essentials.sethome.multiple.unlimited are not limited by these numbers.
  261. sethome-multiple:
  262. # essentials.sethome.multiple
  263. default: 3
  264. # essentials.sethome.multiple.vip
  265. vip: 5
  266. # essentials.sethome.multiple.staff
  267. staff: 10
  268.  
  269. #Set timeout in seconds for players to accept tpa before request is cancelled.
  270. #Set to 0 for no timeout
  271. tpa-accept-cancellation: 0
  272.  
  273. ############################################################
  274. # +------------------------------------------------------+ #
  275. # | EssentialsEco | #
  276. # +------------------------------------------------------+ #
  277. ############################################################
  278.  
  279. # Defines the balance with which new players begin. Defaults to 0.
  280. starting-balance: 0
  281.  
  282. # worth-# defines the value of an item when it is sold to the server via /sell.
  283. # These are now defined in worth.yml
  284.  
  285. # Defines the cost to use the given commands PER USE
  286. command-costs:
  287. # /example costs $1000 PER USE
  288. #example: 1000
  289. # /kit tools costs $1500 PER USE
  290. #kit-tools: 1500
  291.  
  292. # Set this to a currency symbol you want to use.
  293. currency-symbol: '$'
  294.  
  295. # Set the maximum amount of money a player can have
  296. # The amount is always limited to 10 trillions because of the limitations of a java double
  297. max-money: 10000000000000
  298.  
  299. # Enable this to log all interactions with trade/buy/sell signs and sell command
  300. economy-log-enabled: false
  301.  
  302. ############################################################
  303. # +------------------------------------------------------+ #
  304. # | EssentialsHelp | #
  305. # +------------------------------------------------------+ #
  306. ############################################################
  307.  
  308. # Show other plugins commands in help
  309. non-ess-in-help: true
  310.  
  311. # Hide plugins which dont give a permission
  312. # You can override a true value here for a single plugin by adding a permission to a user/group.
  313. # The indervidual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help this setting reguardless.
  314. # You can use negitive permissions to remove access to just a single plugins help if the following is enabled.
  315. hide-permissionless-help: true
  316.  
  317. ############################################################
  318. # +------------------------------------------------------+ #
  319. # | EssentialsChat | #
  320. # +------------------------------------------------------+ #
  321. ############################################################
  322.  
  323. chat:
  324.  
  325. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  326. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  327. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  328. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  329. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  330. radius: 0
  331.  
  332. # Chat formatting can be done in two ways, you can either define a standard format for all chat
  333. # Or you can give a group specific chat format, to give some extra variation.
  334. # If set to the default chat format which "should" be compatible with ichat.
  335. # For more information of chat formatting, check out the wiki: http://ess.khhq.net/wiki/Chat_Formatting
  336.  
  337. format: '<{DISPLAYNAME}> {MESSAGE}'
  338. #format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'
  339.  
  340. group-formats:
  341. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&f {MESSAGE}'
  342. # Admins: '{WORLDNAME} &c[{GROUP}]&f {DISPLAYNAME}&7:&c {MESSAGE}'
  343.  
  344. # If your using group formats make sure to remove the '#' to allow the setting to be read.
  345.  
  346.  
  347.  
  348. ############################################################
  349. # +------------------------------------------------------+ #
  350. # | EssentialsProtect | #
  351. # +------------------------------------------------------+ #
  352. ############################################################
  353.  
  354. protect:
  355. # Database settings for sign/rail protection
  356.  
  357. # mysql or sqlite
  358. datatype: 'sqlite'
  359.  
  360. # If you specified MySQL above, you MUST enter the appropriate details here.
  361. # If you specified SQLite above, these will be IGNORED.
  362. username: 'root'
  363. password: 'root'
  364. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  365.  
  366. # For which block types would you like to be alerted?
  367. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  368. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  369. alert:
  370. on-placement: 10,11,46,327
  371. on-use: 327
  372. on-break:
  373.  
  374. blacklist:
  375.  
  376. # Which blocks should people be prevented from placing
  377. placement: 10,11,46,327
  378.  
  379. # Which items should people be prevented from using
  380. usage: 327
  381.  
  382. # Which blocks should people be prevented from breaking
  383. break:
  384.  
  385. # Which blocks should not be pushed by pistons
  386. piston:
  387.  
  388. # General physics/behavior modifications
  389. prevent:
  390. lava-flow: false
  391. water-flow: false
  392. water-bucket-flow: false
  393. fire-spread: true
  394. lava-fire-spread: true
  395. flint-fire: false
  396. lightning-fire-spread: true
  397. portal-creation: false
  398. tnt-explosion: false
  399. tnt-playerdamage: false
  400. fireball-explosion: false
  401. fireball-fire: false
  402. fireball-playerdamage: false
  403. creeper-explosion: false
  404. creeper-playerdamage: false
  405. creeper-blockdamage: false
  406. enderdragon-blockdamage: true
  407. enderman-pickup: false
  408. villager-death: false
  409. # Monsters won't follow players
  410. # permission essentials.protect.entitytarget.bypass disables this
  411. entitytarget: false
  412. # Prevent the spawning of creatures
  413. spawn:
  414. chicken: false
  415. cow: false
  416. creeper: false
  417. ghast: false
  418. giant: false
  419. monster: false
  420. pig: false
  421. pig_zombie: false
  422. sheep: false
  423. skeleton: false
  424. slime: false
  425. spider: false
  426. squid: false
  427. zombie: false
  428. wolf: false
  429. cave_spider: false
  430. enderman: false
  431. silverfish: false
  432. ender_dragon: false
  433. villager: false
  434. blaze: false
  435. mushroom_cow: false
  436. magma_cube: false
  437. snowman: false
  438.  
  439. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  440. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  441. creeper:
  442. max-height: -1
  443.  
  444. # Protect various blocks.
  445. protect:
  446. # Protect all signs
  447. signs: true
  448.  
  449. # Prevent users from destroying rails
  450. rails: true
  451.  
  452. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  453. # This makes it more difficult to circumvent protection, and should be enabled.
  454. # This only has an effect if "rails" or "signs" is also enabled.
  455. block-below: true
  456.  
  457. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  458. prevent-block-on-rails: false
  459.  
  460. # Store blocks / signs in memory before writing
  461. memstore: false
  462.  
  463. # Disable various default physics and behaviors
  464. disable:
  465. # Should fall damage be disabled?
  466. fall: false
  467.  
  468. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  469. # They will be unable to attack users without that same permission node.
  470. pvp: false
  471.  
  472. # Should drowning damage be disabled?
  473. # (Split into two behaviors; generally, you want both set to the same value)
  474. drown: false
  475. suffocate: false
  476.  
  477. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  478. lavadmg: false
  479.  
  480. # Should arrow damage be disabled
  481. projectiles: false
  482.  
  483. # This will disable damage from touching cacti.
  484. contactdmg: false
  485.  
  486. # Burn, baby, burn! Should fire damage be disabled?
  487. firedmg: false
  488.  
  489. # Should the damage after hit by a lightning be disabled?
  490. lightning: false
  491.  
  492. # Should people with build: false in permissions be allowed to build
  493. # Set true to disable building for those people
  494. build: true
  495.  
  496. # Should people with build: false in permissions be allowed to use items
  497. # Set true to disable useing for those people
  498. use: true
  499.  
  500. # Should we tell people they are not allowed to build
  501. warn-on-build-disallow: true
  502.  
  503.  
  504. # Disable weather options
  505. weather:
  506. storm: false
  507. thunder: false
  508. lightning: false
  509.  
  510. ############################################################
  511. # +------------------------------------------------------+ #
  512. # | Essentials Spawn / New Players | #
  513. # +------------------------------------------------------+ #
  514. ############################################################
  515.  
  516. newbies:
  517. # Should we announce to the server when someone logs in for the first time?
  518. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  519. # If not, set to ''
  520. #announce-format: ''
  521. announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
  522.  
  523. # When we spawn for the first time, which spawnpoint do we use?
  524. # Set to "none" if you want to use the spawn point of the world.
  525. spawnpoint: newbies
  526.  
  527. # Set this to lowest, if you want Multiverse to handle the respawning
  528. # Set this to normal, if you want EssentialsSpawn to handle the respawning
  529. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning
  530. respawn-listener-priority: normal
  531.  
  532. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement