Advertisement
Guest User

Essentials Custom Config

a guest
Jul 14th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.58 KB | None | 0 0
  1.  
  2. ############################################################
  3. # +------------------------------------------------------+ #
  4. # | Notes | #
  5. # +------------------------------------------------------+ #
  6. ############################################################
  7.  
  8. # If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
  9. # If you receive an error when Essentials loads, ensure that:
  10. # - No tabs are present: YAML only allows spaces
  11. # - Indents are correct: YAML heirarchy is based entirely on indentation
  12. # - 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)
  13. # - List items are prefixed with a hyphen and indented:
  14. # lists:
  15. # - look like this
  16. # not:
  17. # - like this
  18. # - Text with symbols is enclosed in single or double quotation marks
  19. # - CraftBukkit and Permissions have been updated: CraftBukkit and Essentials almost always line up, but sometimes other plugins fall behind CraftBukkit's multiple daily updates
  20. # - You have saved the document as UTF-8, NOT the default, ANSI
  21.  
  22.  
  23.  
  24.  
  25.  
  26. ############################################################
  27. # +------------------------------------------------------+ #
  28. # | Essentials (Global) | #
  29. # +------------------------------------------------------+ #
  30. ############################################################
  31.  
  32. # A color code between 0-9 or a-f. Set to 'none' to disable.
  33. ops-name-color: 'none'
  34.  
  35. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  36. nickname-prefix: ''
  37.  
  38. # The delay, in seconds, required between /home, /tp, etc.
  39. teleport-cooldown: 2
  40.  
  41. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  42. teleport-delay: 1
  43.  
  44. # The delay, in seconds, required between /heal attempts
  45. heal-cooldown: 180
  46.  
  47. # The number of items given if the quantity parameter is left out in /item or /give.
  48. default-stack-size: 64
  49.  
  50. #what to prevent from /i /give
  51. #e.g item-spawn-blacklist: 46,11,10,9,8
  52. item-spawn-blacklist:
  53.  
  54. # Whether or not to reclaim memory on player logout; this is technical, and should only be changed under special circumstances.
  55. # This generally increases server stability unless very specific runtime configurations are used.
  56. # HOWEVER, it is known to cause lag upon users logging OUT, so beware!
  57. reclaim-onlogout: false
  58.  
  59. # 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.
  60. spawn-protection: false
  61.  
  62. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  63. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  64. nether:
  65. enabled: true
  66. folder: nether
  67. portals-enabled: true
  68. generate-exit-portals: true
  69.  
  70. # Mob limit on spawnmob
  71. spawnmob-limit: 10
  72.  
  73. # The message of the day, displayed on connect and by typing /motd.
  74. motd:
  75. - '&bHello there &c{PLAYER}&4!'
  76. - '&bCurrently online today: &e{PLAYERLIST}'
  77. - '&6&lMOTD&7: &bI haz cupcakes'
  78.  
  79. # The server rules, available by typing /vgrules
  80. rules:
  81. - '&e[&81&e] &6Dont Grief'
  82. - '&e[&82&e] &c&lSCAMMING &6is allowed'
  83. - '&e[&83&e] &6&dRESPECT &6all the staffs'
  84. - '&e[&84&e] &6&d&lRESPECT &6for those players who didint interupt you'
  85. - '&e[&85&e] &c&lADVERTISING &6is strictly not allowed'
  86. - '&e[&86&e] &6Spamming leads to &f&mmute'
  87.  
  88.  
  89. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
  90. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
  91. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
  92. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
  93. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
  94. # such as /egod, will always grant Essentials priority.
  95. # Because WorldGuard's /god is broken/unreliable, we should try to take priority over /god. If this doesn't work, use
  96. # /essentials:god or /egod. Do NOT use WorldGuard's /god, or you will likely be stuck in god mode.
  97. overridden-commands:
  98. - god
  99.  
  100. # Disabled commands will be completelly unavailable on the server.
  101. disabled-commands:
  102. # - pl
  103. # - plugin
  104. # - bukkit:me
  105. # - minecraft:me
  106.  
  107. # Restricted commands will only be available to ops.
  108. # These will have NO EFFECT if you have Permissions installed!
  109. # These are here only if you want something simpler than Permissions.
  110. restricted-commands:
  111. - bigtree
  112. - item
  113. - give
  114. - heal
  115. - plugin
  116. - time
  117. - top
  118. - tp
  119. - tphere
  120. - tree
  121. - setspawn
  122. - antioch
  123. - kick
  124. - ban
  125. - unban
  126. - top
  127. - jump
  128. - tpo
  129. - tppos
  130. - tpohere
  131. - economy
  132. - setwarp
  133. - delwarp
  134. - essentials
  135. - gc
  136. - spawnmob
  137. - broadcast
  138. - burn
  139. - ext
  140. - kill
  141. - ping
  142. - banip
  143. - unban
  144. - mute
  145. - kick
  146. - kickall
  147. - unbanip
  148. - togglejail
  149. - setjail
  150.  
  151. # Note: All items MUST be followed by a quantity!
  152. # Times are measured in seconds.
  153. kits:
  154. tools:
  155. delay: 10
  156. items:
  157. - 277 1
  158. - 278 1
  159. - 279 1
  160.  
  161. # Disable all signs
  162. signs-disabled: false
  163.  
  164. # Backup runs a command while saving is disabled
  165. backup:
  166. # Interval in minutes
  167. interval: 60
  168. # Add a command that backups your data, e.g.
  169. # command: 'rdiff-backup World1 backups/World1'
  170.  
  171. # Set this true to enable permission per warp.
  172. per-warp-permission: false
  173.  
  174. # Sort output of /list command by groups
  175. sort-list-by-groups: false
  176.  
  177.  
  178. ############################################################
  179. # +------------------------------------------------------+ #
  180. # | EssentialsHome | #
  181. # +------------------------------------------------------+ #
  182. ############################################################
  183.  
  184. # When users die, should they respawn at their homes, instead of the spawnpoint?
  185. respawn-at-home: true
  186.  
  187. # When a user interacts with a bed, should their home be set to that location?
  188. # 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.
  189. bed-sethome: true
  190.  
  191. #if no home is set send you to spawn when /home is used
  192. spawn-if-no-home: false
  193.  
  194.  
  195. ############################################################
  196. # +------------------------------------------------------+ #
  197. # | EssentialsEco | #
  198. # +------------------------------------------------------+ #
  199. ############################################################
  200.  
  201. # Defines the balance with which new players begin. Defaults to 0.
  202. starting-balance: 1
  203.  
  204. # worth-# defines the value of an item when it is sold to the server via /sell.
  205. # For a premade list which you may copy and paste in: http://pastie.org/1707782
  206. #worth-1: 1
  207. #worth-278: 1000
  208.  
  209. # Defines the cost to use the given commands PER USE
  210. command-costs:
  211. # /example costs $1000 PER USE
  212. #example: 1000
  213. # /kit tools costs $1500 PER USE
  214. # kit-tools: 1500
  215.  
  216.  
  217.  
  218.  
  219.  
  220. ############################################################
  221. # +------------------------------------------------------+ #
  222. # | EssentialsHelp | #
  223. # +------------------------------------------------------+ #
  224. ############################################################
  225.  
  226. #Show other plugins commands in help
  227. non-ess-in-help: true
  228.  
  229.  
  230.  
  231.  
  232.  
  233. ############################################################
  234. # +------------------------------------------------------+ #
  235. # | EssentialsServerlist | #
  236. # +------------------------------------------------------+ #
  237. ############################################################
  238.  
  239. # This is your server's mcserverlist.net API key. Register your server at mcserverlist.net if you haven't already.
  240. mcsl-key: ''
  241.  
  242.  
  243.  
  244.  
  245.  
  246. ############################################################
  247. # +------------------------------------------------------+ #
  248. # | EssentialsChat | #
  249. # +------------------------------------------------------+ #
  250. ############################################################
  251.  
  252. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  253. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  254. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  255. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  256. chat:
  257. radius: 0
  258.  
  259. # If set to the default chat format which "should" be compatible with ichat.
  260. format: '{DISPLAYNAME} {MESSAGE}'
  261. #format: '&8[&e{GROUP}&8]&b {DISPLAYNAME}&6&l>&e {MESSAGE}'
  262.  
  263. # You can also have group-specific formats, uncomment to enable:
  264. group-formats:
  265. # Default: '{DISPLAYNAME}&7:&f {MESSAGE}'
  266. # Admins: '&c{GROUP}&f {DISPLAYNAME}&7:&c {MESSAGE}'
  267.  
  268.  
  269.  
  270.  
  271.  
  272. ############################################################
  273. # +------------------------------------------------------+ #
  274. # | EssentialsProtect | #
  275. # +------------------------------------------------------+ #
  276. ############################################################
  277.  
  278. protect:
  279. # Database settings for sign/rail protection
  280. # get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
  281. # http://java.net/projects/essentials/sources/svn/show/lib?rev=435
  282.  
  283. # mysql, sqlite or none
  284. datatype: ''
  285.  
  286. # If you specified MySQL above, you MUST enter the appropriate details here.
  287. # If you specified SQLite above, these will be IGNORED.
  288. username: ''
  289. password: ''
  290. mysqlDb: ''
  291.  
  292. # For which block types would you like to be alerted?
  293. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  294. alert:
  295. # 10: lava
  296. # 11: still lava
  297. # 46: TNT
  298. on-placement: 10,11,46
  299. on-use:
  300. # 46: TNT
  301. on-break: 46
  302.  
  303. # Users cannot PLACE these types of blocks/items.
  304. # < 255 designates a BLOCK
  305. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
  306. blacklist:
  307. placement: 327,326,14,56,46,
  308. usage: 327,326,325
  309.  
  310. #prevent people from breaking blocks
  311. #break: 20,50
  312. break:
  313.  
  314.  
  315. # General physics/behavior modifications
  316. prevent:
  317. lava-flow: true
  318. water-flow: true
  319. water-bucket-flow: true
  320. fire-spread: false
  321. lava-fire-spread: false
  322. flint-fire: false
  323. portal-creation: false
  324. tnt-explosion: false
  325. creeper-explosion: false
  326. creeper-playerdamage: true
  327. creeper-blockdamage: false
  328. # Monsters won't follow players
  329. # permission essentials.protect.entitytarget.bypass disables this
  330. entitytarget: false
  331. # Prevent the spawning of creatures
  332. spawn:
  333. chicken: false
  334. cow: false
  335. creeper: false
  336. ghast: true
  337. giant: false
  338. monster: false
  339. pig: false
  340. pig_zombie: false
  341. sheep: false
  342. skeleton: false
  343. slime: false
  344. spider: false
  345. squid: false
  346. zombie: false
  347. wolf: false
  348.  
  349. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  350. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  351. creeper:
  352. max-height: -1
  353.  
  354. # Protect various blocks.
  355. protect:
  356. # Protect all signs
  357. signs: true
  358.  
  359. # Prevent users from destroying rails
  360. rails: true
  361.  
  362. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  363. # This makes it more difficult to circumvent protection, and should be enabled.
  364. # This only has an effect if "rails" or "signs" is also enabled.
  365. block-below: true
  366.  
  367. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  368. prevent-block-on-rails: false
  369.  
  370. # Disable various default physics and behaviors
  371. disable:
  372. # Should fall damage be disabled?
  373. fall: false
  374.  
  375. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  376. # They will be unable to attack users without that same permission node.
  377. pvp: false
  378.  
  379. # Should drowning damage be disabled?
  380. # (Split into two behaviors; generally, you want both set to the same value)
  381. drown: false
  382. suffocate: false
  383.  
  384. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  385. lavadmg: false
  386.  
  387. # Should arrow damage be disabled
  388. projectiles: true
  389.  
  390. # This will disable damage from touching cacti.
  391. contactdmg: true
  392.  
  393. # Burn, baby, burn! Should fire damage be disabled?
  394. firedmg: false
  395.  
  396. # Should people with build: false in permissions be allowed to build
  397. # Set true to disable building for those people
  398. build: true
  399.  
  400. #Should we tell people they are not allowed to build
  401. warn-on-build-disallow: false
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408.  
  409. ############################################################
  410. # +------------------------------------------------------+ #
  411. # | New Players | #
  412. # +------------------------------------------------------+ #
  413. ############################################################
  414.  
  415. newbies:
  416. # Should we announce to the server when someone logs in for the first time?
  417. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  418. # If not, set to ''
  419. #announce-format: ''
  420. announce-format: '&bWelcome to the server &8[&e{GROUP}&8] &b{DISPLAYNAME} !'
  421.  
  422. # When we spawn for the first time, which spawnpoint do we use?
  423. spawnpoint: newbies
  424.  
  425. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement