Advertisement
Guest User

Untitled

a guest
Feb 19th, 2011
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.11 KB | None | 0 0
  1. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
  2. # If you receive an error when Essentials loads, ensure that:
  3. # - No tabs are present: YAML only allows spaces
  4. # - Indents are correct: YAML heirarchy is based entirely on indentation
  5. # - 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)
  6. # - List items are prefixed with a hyphen and indented:
  7. # lists:
  8. # - look like this
  9. # not:
  10. # - like this
  11. # - Text with symbols is enclosed in single or double quotation marks
  12. # - CraftBukkit and Permissions have been updated: CraftBukkit and Essentials almost always line up, but sometimes other plugins fall behind CraftBukkit's multiple daily updates
  13. # - You have saved the document as UTF-8, NOT the default, ANSI
  14.  
  15. # This is your server's mcserverlist.net API key. Register your server at mcserverlist.net if you haven't already.
  16. mcsl-key: ''
  17.  
  18. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  19. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  20. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  21. chat-radius: 0
  22.  
  23. # A color code between 0-9 or a-f. Set to 'none' to disable.
  24. ops-name-color: 'c'
  25.  
  26. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  27. nickname-prefix: '~'
  28.  
  29. # The delay, in seconds, required between /home, /tp, etc.
  30. teleport-cooldown: 0
  31.  
  32. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  33. teleport-delay: 0
  34.  
  35. # The delay, in seconds, required between /heal attempts
  36. heal-cooldown: 60
  37.  
  38. # The number of items given if the quantity parameter is left out in /item or /give.
  39. default-stack-size: 64
  40.  
  41. # Whether or not to reclaim memory on player logout; this is technical, and should only be disabled under special circumstances.
  42. # This generally increases server stability unless very specific runtime configurations are used.
  43. reclaim-onlogout: true
  44.  
  45. # Should primitive spawn protection be enabled? For most servers, this should be flase; it is better to use a third-party plugin to protect it.
  46. spawn-protection: false
  47.  
  48. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  49. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  50. nether:
  51. enabled: false
  52. folder: nether
  53. portals-enabled: false
  54.  
  55. # Mob limit on spawnmob
  56. spawnmob-limit: 10
  57.  
  58. #Show other plugins commands in help
  59. non-ess-in-help: true;
  60.  
  61. # The message of the day, displayed on connect and by typing /motd.
  62. motd:
  63. - '&c Bienvenue, {PLAYER}&c!'
  64. - '&f Tape &c/help&f pour avoir la liste des commandes.'
  65. - ' Actuellement en ligne: {PLAYERLIST}'
  66.  
  67. # The server rules, available by typing /rules
  68. rules:
  69. - '[1] Soyez respectueux envers les joueurs'
  70. - '[2] Ne detruisez pas les constructions des autres'
  71. - '[3] Ecrivez francais et pas en SMS'
  72.  
  73. # Disabled commands will be completelly unavailable on the server.
  74. disabled-commands:
  75. - nick
  76.  
  77. # Restricted commands will only be available to ops.
  78. # These will have NO EFFECT if you have Permissions installed!
  79. # These are here only if you want something simpler than Permissions.
  80. restricted-commands:
  81. - bigtree
  82. - item
  83. - give
  84. - heal
  85. - plugin
  86. - time
  87. - top
  88. - tp
  89. - tphere
  90. - tree
  91.  
  92. # Note: All items MUST be followed by a quantity!
  93. # Times are measured in seconds.
  94. kits:
  95. tools:
  96. delay: 10
  97. items:
  98. - 277 1
  99. - 278 1
  100. - 279 1
  101.  
  102.  
  103. # EssentialsProtect settings requires EssentialsProtect.jar
  104.  
  105. #Database settings for sign / rail protection
  106. #get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
  107. #http://java.net/projects/essentials/sources/svn/show/lib?rev=435
  108.  
  109. #mysql or sqlite
  110. ep-datatype: 'sqlite'
  111.  
  112. #database login details for mysql
  113. ep-username: 'root'
  114. ep-password: 'root'
  115. ep-mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  116.  
  117. #Specific protection settings
  118. ep-protectSigns: true
  119. ep-protectRails: true
  120. ep-protectBlockBelow: true
  121. ep-preventBlockOnRail: false
  122.  
  123. #Server wide item protection
  124.  
  125. ##################################################
  126. #ep-alert:
  127. # on-placement: 10,11 Not Implemented Yet
  128. # on-use: Not implemented Yet
  129. # on-break: 46 Not Implemented Yet
  130. ##################################################
  131. ep-blacklist-placement: 327,326,14,56,46,11,10,9,8
  132. ep-blacklist-usage: 327,326,325
  133.  
  134. #Server wide general protection
  135. ep-prevent-lava-flow: false
  136. ep-prevent-water-flow: false
  137. ep-prevent-water-bucket-flow: false
  138. ep-prevent-fire-spread: false
  139. ep-prevent-lava-fire-spread: false
  140. ep-prevent-flint-fire: false
  141. #ep-prevent-tnt-explosion: false Not Implemented Yet
  142. #ep-prevent-creeper-explosion: false Not Implemented Yet
  143.  
  144.  
  145. # End Essentials Protect Settings
  146.  
  147. # End of File
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement