Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 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. # A color code between 0-9 or a-f. Set to 'none' to disable.
  19. ops-name-color: 'c'
  20.  
  21. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  22. nickname-prefix: '~'
  23.  
  24. # The delay, in seconds, required between /home, /tp, etc.
  25. teleport-cooldown: 10
  26.  
  27. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  28. teleport-delay: 10
  29.  
  30. # The delay, in seconds, required between /heal attempts
  31. heal-cooldown: 60
  32.  
  33. # The number of items given if the quantity parameter is left out in /item or /give.
  34. default-stack-size: 1
  35.  
  36. # Whether or not to reclaim memory on player logout; this is technical, and should only be disabled under special circumstances.
  37. # This generally increases server stability unless very specific runtime configurations are used.
  38. reclaim-onlogout: true
  39.  
  40. # 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.
  41. spawn-protection: false
  42.  
  43. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  44. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  45. nether:
  46. enabled: true
  47. folder: nether
  48. portals-enabled: true
  49.  
  50. # Mob limit on spawnmob
  51. spawnmob-limit: 10
  52.  
  53. #Show other plugins commands in help
  54. non-ess-in-help: true;
  55.  
  56. # The message of the day, displayed on connect and by typing /motd.
  57. motd:
  58. - '&cWelcome, {PLAYER}&c!'
  59. - '&fType &c/help&f for a list of commands.'
  60. - 'Currently online: &c{PLAYERLIST}'
  61. - 'Read The Rules&2! &c/rules'
  62. - '&1New Players Follow &4The Torches'
  63.  
  64. # The server rules, available by typing /rules
  65. rules:
  66. - '&2[1] &3Be respectful'
  67. - '&2[2] &3Be ethical'
  68. - '&2[3] &3Use common sense'
  69.  
  70. # Disabled commands will be completelly unavailable on the server.
  71. disabled-commands:
  72. - nick
  73.  
  74. # Restricted commands will only be available to ops.
  75. # These will have NO EFFECT if you have Permissions installed!
  76. # These are here only if you want something simpler than Permissions.
  77. restricted-commands:
  78. - bigtree
  79. - item
  80. - give
  81. - heal
  82. - plugin
  83. - time
  84. - top
  85. - tp
  86. - tphere
  87. - tree
  88.  
  89. # Note: All items MUST be followed by a quantity!
  90. # Times are measured in seconds.
  91. kits:
  92. atools:
  93. delay: 10
  94. items:
  95. - 277 1
  96. - 278 1
  97. - 279 1
  98. tools:
  99. delay: 10
  100. items:
  101. - 269 1
  102. - 270 1
  103. - 271 1
  104.  
  105.  
  106. # EssentialsProtect settings requires EssentialsProtect.jar
  107.  
  108. #Database settings
  109.  
  110. #mysql or sqlite
  111. ep-datatype: 'mysql'
  112.  
  113. #database login details for mysql
  114. ep-username: 'xxxx'
  115. ep-pasword: 'xxxxx'
  116. ep-mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  117.  
  118. #Specific protection settings
  119. ep-protectSigns: true
  120. ep-protectRails: true
  121. ep-protectBlockBelow: true
  122. ep-preventBlockOnRail: false
  123.  
  124. #Server wide item protection
  125. # ep-alert-on-placement: true Not Implimented Yet
  126. # ep-alert-on-use: true Not Implimented Yet
  127. ep-blacklist-placement: 327,326,14,56,46,11,10,9,8
  128. ep-blacklist-usage: 327,326,325
  129.  
  130. #Server wide general protection
  131. ep-prevent-lava-flow: false
  132. ep-prevent-water-flow: false
  133. ep-prevent-water-bucket-flow: false
  134. ep-prevent-fire-spread: false
  135. ep-prevent-lava-fire-spread: false
  136. ep-prevent-flint-fire: false
  137. #ep-prevent-tnt-explosion: false Not Implimented Yet
  138. #ep-prevent-creeper-explosion: false Not Implimented Yet
  139.  
  140.  
  141. # End Essentials Protect Settings
  142.  
  143. # End of File
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement