Advertisement
Guest User

Untitled

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