Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.81 KB | None | 0 0
  1. Essentials config.yml
  2.  
  3. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
  4. # If you receive an error when Essentials loads, ensure that:
  5. # - No tabs are present: YAML only allows spaces
  6. # - Indents are correct: YAML heirarchy is based entirely on indentation
  7. # - 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)
  8. # - List items are prefixed with a hyphen and indented:
  9. # lists:
  10. # - look like this
  11. # not:
  12. # - like this
  13. # - Text with symbols is enclosed in single or double quotation marks
  14. # - CraftBukkit and Permissions have been updated: CraftBukkit and Essentials almost always line up, but sometimes other plugins fall behind CraftBukkit's multiple daily updates
  15. # - You have saved the document as UTF-8, NOT the default, ANSI
  16.  
  17. # A color code between 0-9 or a-f. Set to 'none' to disable.
  18. ops-name-color: 'c'
  19.  
  20. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  21. nickname-prefix: '~'
  22.  
  23. # The delay, in seconds, required between /home, /tp, etc.
  24. teleport-cooldown: 10
  25.  
  26. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  27. teleport-delay: 0
  28.  
  29. # The delay, in seconds, required between /heal attempts
  30. heal-cooldown: 10
  31.  
  32. # The number of items given if the quantity parameter is left out in /item or /give.
  33. default-stack-size: 64
  34.  
  35. # Whether or not to reclaim memory on player logout; this is technical, and should only be disabled under special circumstances.
  36. # This generally increases server stability unless very specific runtime configurations are used.
  37. reclaim-onlogout: true
  38.  
  39. # 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.
  40. spawn-protection: false
  41.  
  42. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  43. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  44. nether:
  45. enabled: true
  46. folder: nether
  47. portals-enabled: true
  48.  
  49. # Mob limit on spawnmob
  50. spawnmob-limit: 10
  51.  
  52. #Show other plugins commands in help
  53. non-ess-in-help: false;
  54.  
  55. # The message of the day, displayed on connect and by typing /motd.
  56. motd:
  57. - '&cWelcome, {PLAYER}&c!'
  58. - '&fType &c/help&f for a list of commands and &c/rules&f for the rules.'
  59. - 'Type &c/money&f to see your iConomy balance'
  60. - 'Currently online: {PLAYERLIST}'
  61.  
  62. # The server rules, available by typing /rules
  63. rules:
  64. - '[1] Do not grief!'
  65. - '[2] Be respectful'
  66. - '[3] Do not build in town without permission'
  67.  
  68. # Disabled commands will be completelly unavailable on the server.
  69. disabled-commands:
  70. - nick
  71.  
  72. # Restricted commands will only be available to ops.
  73. # These will have NO EFFECT if you have Permissions installed!
  74. # These are here only if you want something simpler than Permissions.
  75. restricted-commands:
  76. - bigtree
  77. - item
  78. - give
  79. - heal
  80. - plugin
  81. - time
  82. - top
  83. - tp
  84. - tphere
  85. - tree
  86.  
  87. # Note: All items MUST be followed by a quantity!
  88. # Times are measured in seconds.
  89. kits:
  90. tools:
  91. delay: 10
  92. items:
  93. - 277 1
  94. - 278 1
  95. - 279 1
  96.  
  97. # End of File
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. Permissions config.yml
  105.  
  106. # Supports "Default" and "GroupUsers"
  107. plugin:
  108. permissions:
  109. system: default
  110.  
  111. ##
  112. # Groups can contain inheritance.
  113. # To make a group inherit the permissions from another
  114. # group simply place the groups name in the "inheritance:"
  115. # field seperated by commas.
  116. #
  117. # Example: inheritance: Default,Admins,
  118. ##
  119. # All permissions including the asterisks must be placed in single quotes.
  120. # like so:
  121. #
  122. # - 'general.spawn'
  123. #
  124. # Otherwise errors will happen!
  125. ##
  126. # Globalized Permission settings:
  127. #
  128. # If a permission contains periods (.) you can denote a globalized parameter:
  129. #
  130. # - 'general.*'
  131. #
  132. # This will allow you to use all general commands.
  133. #
  134. ##
  135. #
  136. # Single Asterisk denotes all commands:
  137. #
  138. # - '*'
  139. ##
  140. groups:
  141. Default:
  142. default: true
  143. info:
  144. prefix:
  145. suffix:
  146. build: true
  147. inheritance:
  148. permissions:
  149. - 'lwc.protect'
  150. - 'essentials.help'
  151. - 'essentials.list'
  152. - 'essentials.home'
  153. - 'essentials.sethome'
  154. - 'essentials.spawn'
  155. - 'essentials.mail'
  156. - 'essentials.mail.send'
  157. - 'essentials.getpos'
  158. - 'essentials.rules'
  159. - 'essentials.compass'
  160. - 'essentials.depth'
  161. - 'essentials.motd'
  162. - 'essentials.ping'
  163. - 'essentials.warp'
  164. - 'iConomy.payment'
  165. - 'essentials.msg'
  166. - 'essentials.me'
  167. - 'essentials.portal'
  168. Moderator:
  169. default: false
  170. info:
  171. prefix: '&2'
  172. suffix:
  173. build: true
  174. inheritance:
  175. - Default
  176. permissions:
  177. - 'lwc.mod'
  178. - 'essentials.kick'
  179. - 'essentials.ban'
  180. - 'essentials.unban'
  181. - 'essentials.tp'
  182. - 'essentials.tphere'
  183. - 'essentials.top'
  184. - 'essentials.heal'
  185. - 'godmode.god.self'
  186. - 'godmode.god.players'
  187. - 'essentials.item'
  188. - 'essentials.give'
  189. - 'essentials.tppos'
  190. - 'essentials.jump'
  191. - 'essentials.modgrp'
  192. Admin:
  193. default: false
  194. info:
  195. prefix: '&c'
  196. suffix:
  197. build: true
  198. inheritance:
  199. - Moderator
  200. permissions:
  201. - 'lwc.admin'
  202. - 'essentials.time'
  203. - 'essentials.setspawn'
  204. - 'essentials.plugin'
  205. - 'essentials.essentials'
  206. - 'godmode.reconfig'
  207. - 'essentials.setwarp'
  208. - 'essentials.delwarp'
  209. - 'iConomy.access'
  210. - 'iConomy.withdraw'
  211. - 'iConomy.deposit'
  212. - 'iConomy.reset'
  213. - 'essentials.modgrpoverride'
  214. - 'essentials.broadcast'
  215. - 'essentials.antioch'
  216. - 'essentials.kill'
  217. - 'essentials.tree'
  218. - 'essentials.bigtree'
  219. - 'essentials.spawnmob'
  220. - 'essentials.reloadall'
  221. ##
  222. # DarkGrave has control over all commands.
  223. # sk89q can use /spawn & /time
  224. ##
  225. users:
  226. mexander:
  227. group: Moderator
  228. permissons:
  229. greatrhodand:
  230. group: Admin
  231. permissions:
  232. mw2839:
  233. group: Moderator
  234. permissions:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement