Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.27 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. # A color code between 0-9 or a-f. Set to 'none' to disable.
  16. ops-name-color: 'c'
  17.  
  18. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  19. nickname-prefix: '~'
  20.  
  21. # The delay, in seconds, required between /home, /tp, etc.
  22. teleport-cooldown: 1
  23.  
  24. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  25. teleport-delay: 0
  26.  
  27. # The delay, in seconds, required between /heal attempts
  28. heal-cooldown: 60
  29.  
  30. # The number of items given if the quantity parameter is left out in /item or /give.
  31. default-stack-size: 64
  32.  
  33. # Whether or not to reclaim memory on player logout; this is technical, and should only be disabled under special circumstances.
  34. # This generally increases server stability unless very specific runtime configurations are used.
  35. reclaim-onlogout: true
  36.  
  37. # 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.
  38. spawn-protection: false
  39.  
  40. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  41. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  42. nether:
  43. enabled: false
  44. folder: nether
  45. portals-enabled: false
  46.  
  47. # Mob limit on spawnmob
  48. spawnmob-limit: 30
  49.  
  50. #Show other plugins commands in help
  51. non-ess-in-help: true;
  52.  
  53. # The message of the day, displayed on connect and by typing /motd.
  54. motd:
  55. - '&fWelcome, &c{PLAYER}&f! &fType &c/help&f for commands.'
  56. - 'Currently online: {PLAYERLIST}'
  57.  
  58. # The server rules, available by typing /rules
  59. rules:
  60. - '[1] Be respectful'
  61. - '[2] Be ethical'
  62. - '[3] Use common sense'
  63.  
  64. # Disabled commands will be completelly unavailable on the server.
  65. disabled-commands:
  66. - nick
  67. - heal
  68. - top
  69. - tree
  70. - eco
  71. - ping
  72. - nuble
  73. - sell
  74. - top
  75. - tree
  76. - spawn
  77. - setspawn
  78. - getpos
  79. - clearinventory
  80. - helpop
  81. - home
  82. - sethome
  83. - warp
  84. - setwarp
  85. - delwarp
  86. - kill
  87. - jump
  88. - reloadall
  89. - modgrp
  90. - world
  91. - nether
  92.  
  93. # Restricted commands will only be available to ops.
  94. # These will have NO EFFECT if you have Permissions installed!
  95. # These are here only if you want something simpler than Permissions.
  96. restricted-commands:
  97. - bigtree
  98. - item
  99. - give
  100. - heal
  101. - plugin
  102. - time
  103. - top
  104. - tp
  105. - tphere
  106. - tree
  107.  
  108. # Note: All items MUST be followed by a quantity!
  109. # Times are measured in seconds.
  110. kits:
  111. outfit:
  112. delay: 3600
  113. items:
  114. - 277 1
  115. - 278 1
  116. - 279 1
  117. - 50 128
  118. - 263 32
  119. - 17 32
  120. - 41 1
  121. - 42 1
  122. - 331 10
  123. - 322 5
  124. - 347 1
  125. - 345 1
  126. armor:
  127. delay: 86400
  128. items:
  129. - 276 1
  130. - 261 1
  131. - 262 64
  132. - 310 1
  133. - 311 1
  134. - 312 1
  135. - 313 1
  136. nether:
  137. delay: 3600
  138. items:
  139. - 87 64
  140. - 88 64
  141. - 89 64
  142.  
  143. # EssentialsProtect settings requires EssentialsProtect.jar
  144.  
  145. #Database settings
  146.  
  147. #mysql or sqlite
  148. ep-datatype: 'sqlite'
  149.  
  150. #database login details for mysql
  151. ep-username: 'root'
  152. ep-pasword: 'root'
  153. ep-mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  154.  
  155. #Protection settings
  156. ep-protectSigns: true
  157. ep-protectRails: true
  158. ep-protectBlockBelow: true
  159. ep-preventBlockOnRail: false
  160.  
  161. # End Essentials Protect Settings
  162.  
  163. # End of File
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement