Advertisement
Guest User

Untitled

a guest
Jul 5th, 2011
391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.90 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. ############################################################
  26. # +------------------------------------------------------+ #
  27. # | Essentials (Global) | #
  28. # +------------------------------------------------------+ #
  29. ############################################################
  30.  
  31. # A color code between 0-9 or a-f. Set to 'none' to disable.
  32. ops-name-color: 'c'
  33.  
  34. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  35. nickname-prefix: '#'
  36.  
  37. # The delay, in seconds, required between /home, /tp, etc.
  38. teleport-cooldown: 5
  39.  
  40. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  41. teleport-delay: 5
  42.  
  43. # The delay, in seconds, required between /heal attempts
  44. heal-cooldown: 60
  45.  
  46. # The number of items given if the quantity parameter is left out in /item or /give.
  47. default-stack-size: 64
  48.  
  49. # Whether or not to reclaim memory on player logout; this is technical, and should only be changed under special circumstances.
  50. # This generally increases server stability unless very specific runtime configurations are used.
  51. # HOWEVER, it is known to cause lag upon users logging OUT, so beware!
  52. reclaim-onlogout: false
  53.  
  54. # 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.
  55. spawn-protection: false
  56.  
  57. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  58. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  59. nether:
  60. enabled: true
  61. folder: Lost_nether
  62. portals-enabled: true
  63. generate-exit-portals: false
  64.  
  65. # Mob limit on spawnmob
  66. spawnmob-limit: 10
  67.  
  68. # The message of the day, displayed on connect and by typing /motd.
  69. motd:
  70. - '&fType &c/help&f for a list of commands.'
  71. - 'Currently online: {PLAYERLIST}'
  72.  
  73. # The server rules, available by typing /rules
  74. rules:
  75. - '[1] No mods allowed. Perma ban if caught'
  76. - '[2] Keep the chat PG at ALL times'
  77. - '[3] Griefing is ALLOWED'
  78.  
  79. # Disabled commands will be completelly unavailable on the server.
  80. disabled-commands:
  81. # - nick
  82.  
  83. # Restricted commands will only be available to ops.
  84. # These will have NO EFFECT if you have Permissions installed!
  85. # These are here only if you want something simpler than Permissions.
  86. restricted-commands:
  87. - bigtree
  88. - item
  89. - give
  90. - heal
  91. - plugin
  92. - time
  93. - top
  94. - tp
  95. - tphere
  96. - tree
  97.  
  98. # Note: All items MUST be followed by a quantity!
  99. # Times are measured in seconds.
  100. kits:
  101. tools:
  102. delay: 5
  103. items:
  104. - 268 1
  105. - 269 1
  106. - 270 1
  107. - 271 1
  108.  
  109. # Disable all signs
  110. signs-disabled: false
  111.  
  112. # Backup runs a command while saving is disabled
  113. backup:
  114. # Interval in minutes
  115. interval: 30
  116. # Add a command that backups your data, e.g.
  117. # command: 'rdiff-backup World1 backups/World1'
  118.  
  119. #Set this true to enable permission per warp.
  120. per-warp-permission: false
  121.  
  122.  
  123. ############################################################
  124. # +------------------------------------------------------+ #
  125. # | EssentialsHome | #
  126. # +------------------------------------------------------+ #
  127. ############################################################
  128.  
  129. # When users die, should they respawn at their homes, instead of the spawnpoint?
  130. respawn-at-home: false
  131.  
  132. # When a user interacts with a bed, should their home be set to that location?
  133. # If you enable this and remove default user access to the /sethome command, you can make beds the only way for players to set their home location.
  134. bed-sethome: false
  135.  
  136.  
  137.  
  138.  
  139. ############################################################
  140. # +------------------------------------------------------+ #
  141. # | EssentialsEco | #
  142. # +------------------------------------------------------+ #
  143. ############################################################
  144.  
  145. # Defines the balance with which new players begin. Defaults to 0.
  146. starting-balance: 0
  147.  
  148. # worth-# defines the value of an item when it is sold to the server via /sell.
  149. #worth-1: 1
  150. #worth-278: 1000
  151.  
  152. # Defines the cost to use the given commands PER USE
  153. command-costs:
  154. # /example costs $1000 PER USE
  155. #example: 1000
  156. # /kit tools costs $1500 PER USE
  157. # kit-tools: 1500
  158.  
  159.  
  160.  
  161.  
  162.  
  163. ############################################################
  164. # +------------------------------------------------------+ #
  165. # | EssentialsHelp | #
  166. # +------------------------------------------------------+ #
  167. ############################################################
  168.  
  169. #Show other plugins commands in help
  170. non-ess-in-help: true
  171.  
  172.  
  173.  
  174.  
  175.  
  176. ############################################################
  177. # +------------------------------------------------------+ #
  178. # | EssentialsServerlist | #
  179. # +------------------------------------------------------+ #
  180. ############################################################
  181.  
  182. # This is your server's mcserverlist.net API key. Register your server at mcserverlist.net if you haven't already.
  183. mcsl-key: 'f1b8e87e7ea25fa8817f1426b603e676ce4e0711'
  184.  
  185.  
  186.  
  187.  
  188.  
  189. ############################################################
  190. # +------------------------------------------------------+ #
  191. # | EssentialsChat | #
  192. # +------------------------------------------------------+ #
  193. ############################################################
  194.  
  195. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  196. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  197. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  198. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  199. chat:
  200. radius: 0
  201.  
  202. # If you want the default chat format, uncomment the next line and comment the other format.
  203. #format: '<{DISPLAYNAME}> {MESSAGE}'
  204. format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'
  205.  
  206. # You can also have group-specific formats:
  207. group-formats:
  208. Admins: '{WORLDNAME} &c[{GROUP}]&f {DISPLAYNAME}&7:&c {MESSAGE}'
  209.  
  210.  
  211.  
  212.  
  213.  
  214. ############################################################
  215. # +------------------------------------------------------+ #
  216. # | EssentialsProtect | #
  217. # +------------------------------------------------------+ #
  218. ############################################################
  219.  
  220. protect:
  221. # Database settings for sign/rail protection
  222. # get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
  223. # http://java.net/projects/essentials/sources/svn/show/lib?rev=435
  224.  
  225. # mysql, sqlite or none
  226. datatype: 'mysql'
  227.  
  228. # If you specified MySQL above, you MUST enter the appropriate details here.
  229. # If you specified SQLite above, these will be IGNORED.
  230. username: 'mc6373'
  231. password: 'bvQ8ueGq6Tfbru5h'
  232. mysqlDb: 'jdbc:mysql://mysql1.servercraft.co/mc6373db'
  233.  
  234. # For which block types would you like to be alerted?
  235. # You can find a list of IDs in plugins/Essentials/Items.db after loading Essentials for the first time.
  236. alert:
  237. # 10: lava
  238. # 11: still lava
  239. # 46: TNT
  240. on-placement: 10,11,46
  241. # 1: rock (just an example--doesn't actually do much)
  242. on-use: 10
  243. # 46: TNT
  244. on-break: 46
  245.  
  246. # Users cannot PLACE these types of blocks/items.
  247. # < 255 designates a BLOCK
  248. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
  249. blacklist:
  250. placement: 327,326,14,56,46,11,10,9,8
  251. usage: 327,326,325
  252.  
  253.  
  254. # General physics/behavior modifications
  255. prevent:
  256. lava-flow: false
  257. water-flow: false
  258. water-bucket-flow: false
  259. fire-spread: false
  260. lava-fire-spread: false
  261. flint-fire: false
  262. tnt-explosion: false
  263. creeper-explosion: false
  264. creeper-playerdamage: false
  265. creeper-blockdamage: false
  266. # Prevent the spawning of creatures
  267. spawn:
  268. creeper: false
  269. ghast: false
  270. slime: false
  271.  
  272. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  273. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  274. creeper:
  275. max-height: -1
  276.  
  277. # Protect various blocks.
  278. protect:
  279. # Protect all signs
  280. signs: false
  281.  
  282. # Prevent users from destroying rails
  283. rails: false
  284.  
  285. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  286. # This makes it more difficult to circumvent protection, and should be enabled.
  287. # This only has an effect if "rails" or "signs" is also enabled.
  288. block-below: true
  289.  
  290. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  291. prevent-block-on-rails: false
  292.  
  293. # Disable various default physics and behaviors
  294. disable:
  295. # Should fall damage be disabled?
  296. fall: false
  297.  
  298. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  299. # They will be unable to attack users without that same permission node.
  300. pvp: false
  301.  
  302. # Should drowning damage be disabled?
  303. # (Split into two behaviors; generally, you want both set to the same value)
  304. drown: false
  305. suffocate: false
  306.  
  307. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  308. lavadmg: false
  309.  
  310. # Should arrows cause damage?
  311. projectiles: false
  312.  
  313. # This will disable damage from touching cacti.
  314. contactdmg: false
  315.  
  316. # Burn, baby, burn! Should fire damage be disabled?
  317. firedmg: false
  318.  
  319. # Should people with build: false in permissions be allowed to build
  320. # Set true to disable building for those people
  321. build: false
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329. ############################################################
  330. # +------------------------------------------------------+ #
  331. # | New Players | #
  332. # +------------------------------------------------------+ #
  333. ############################################################
  334.  
  335. newbies:
  336. # Should we announce to the server when someone logs in for the first time?
  337. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  338. # If not, set to ''
  339. #announce-format: ''
  340. announce-format: '&dWelcome {DISPLAYNAME} to the server!'
  341.  
  342. # When we spawn for the first time, which spawnpoint do we use?
  343. spawnpoint: newbies
  344.  
  345. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement