Advertisement
Guest User

Untitled

a guest
Nov 10th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.92 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. # | Essentials (Global) | #
  24. # +------------------------------------------------------+ #
  25. ############################################################
  26.  
  27. # A color code between 0-9 or a-f. Set to 'none' to disable.
  28. ops-name-color: 'c'
  29.  
  30. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  31. nickname-prefix: '~'
  32.  
  33. # The delay, in seconds, required between /home, /tp, etc.
  34. teleport-cooldown: 0
  35.  
  36. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  37. teleport-delay: 0
  38.  
  39. # The delay, in seconds, required between /heal attempts
  40. heal-cooldown: 60
  41.  
  42. # The number of items given if the quantity parameter is left out in /item or /give.
  43. default-stack-size: 64
  44.  
  45. #what to prevent from /i /give
  46. #e.g item-spawn-blacklist: 46,11,10
  47. item-spawn-blacklist:
  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: false
  61. folder: nether
  62. portals-enabled: false
  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. - '&cWelcome, {PLAYER}&c!'
  71. - '&fType &c/help&f for a list of commands.'
  72. - 'Currently online: {PLAYERLIST}'
  73.  
  74. # The server rules, available by typing /rules
  75. rules:
  76. - '[1] Be respectful'
  77. - '[2] Be ethical'
  78. - '[3] Use common sense'
  79.  
  80. # Disabled commands will be completelly unavailable on the server.
  81. disabled-commands:
  82. # - nick
  83.  
  84. # Restricted commands will only be available to ops.
  85. # These will have NO EFFECT if you have Permissions installed!
  86. # These are here only if you want something simpler than Permissions.
  87. restricted-commands:
  88. - bigtree
  89. - item
  90. - give
  91. - heal
  92. - plugin
  93. - time
  94. - top
  95. - tp
  96. - tphere
  97. - tree
  98. - setspawn
  99. - antioch
  100. - kick
  101. - ban
  102. - unban
  103. - top
  104. - jump
  105. - tpo
  106. - tppos
  107. - tpohere
  108. - economy
  109. - setwarp
  110. - delwarp
  111. - essentials
  112. - gc
  113. - spawnmob
  114. - broadcast
  115. - burn
  116. - ext
  117. - kill
  118. - ping
  119. - banip
  120. - unban
  121. - mute
  122. - kick
  123. - kickall
  124. - unbanip
  125. - togglejail
  126. - setjail
  127.  
  128. # Note: All items MUST be followed by a quantity!
  129. # Times are measured in seconds.
  130. kits:
  131. tools:
  132. delay: 10
  133. items:
  134. - wooden_shovel 1
  135. - wooden_sword 1
  136. - wooden_axe 1
  137. - wooden_pickaxe 1
  138. - cooked_beef 10
  139.  
  140. # Disable all signs
  141. signs-disabled: false
  142.  
  143. # Backup runs a command while saving is disabled
  144. backup:
  145. # Interval in minutes
  146. interval: 60
  147. # Add a command that backups your data, e.g.
  148. # command: 'rdiff-backup World1 backups/World1'
  149.  
  150. # Set this true to enable permission per warp.
  151. per-warp-permission: false
  152.  
  153. # Sort output of /list command by groups
  154. sort-list-by-groups: false
  155.  
  156. ############################################################
  157. # +------------------------------------------------------+ #
  158. # | EssentialsHome | #
  159. # +------------------------------------------------------+ #
  160. ############################################################
  161.  
  162. # When users die, should they respawn at their homes, instead of the spawnpoint?
  163. respawn-at-home: false
  164.  
  165. # When a user interacts with a bed, should their home be set to that location?
  166. # 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.
  167. bed-sethome: false
  168.  
  169. ############################################################
  170. # +------------------------------------------------------+ #
  171. # | EssentialsEco | #
  172. # +------------------------------------------------------+ #
  173. ############################################################
  174.  
  175. # Defines the balance with which new players begin. Defaults to 0.
  176. starting-balance: 0
  177.  
  178. # worth-# defines the value of an item when it is sold to the server via /sell.
  179. # For a premade list which you may copy and paste in: http://pastie.org/1707782
  180. #worth-1: 1
  181. #worth-278: 1000
  182.  
  183. # Defines the cost to use the given commands PER USE
  184. command-costs:
  185. # /example costs $1000 PER USE
  186. #example: 1000
  187. # /kit tools costs $1500 PER USE
  188. # kit-tools: 1500
  189.  
  190. ############################################################
  191. # +------------------------------------------------------+ #
  192. # | EssentialsHelp | #
  193. # +------------------------------------------------------+ #
  194. ############################################################
  195.  
  196. #Show other plugins commands in help
  197. non-ess-in-help: true
  198.  
  199. ############################################################
  200. # +------------------------------------------------------+ #
  201. # | EssentialsServerlist | #
  202. # +------------------------------------------------------+ #
  203. ############################################################
  204.  
  205. # This is your server's mcserverlist.net API key. Register your server at mcserverlist.net if you haven't already.
  206. mcsl-key: ''
  207.  
  208. ############################################################
  209. # +------------------------------------------------------+ #
  210. # | EssentialsChat | #
  211. # +------------------------------------------------------+ #
  212. ############################################################
  213.  
  214. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  215. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  216. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  217. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  218. chat:
  219. radius: 0
  220.  
  221. # If set to the default chat format which "should" be compatible with ichat.
  222. format: '<{DISPLAYNAME}> {MESSAGE}'
  223. #format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'
  224.  
  225. # You can also have group-specific formats, uncomment to enable:
  226. group-formats:
  227. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&f {MESSAGE}'
  228. # Admins: '{WORLDNAME} &c[{GROUP}]&f {DISPLAYNAME}&7:&c {MESSAGE}'
  229.  
  230. ############################################################
  231. # +------------------------------------------------------+ #
  232. # | EssentialsProtect | #
  233. # +------------------------------------------------------+ #
  234. ############################################################
  235.  
  236. protect:
  237. # Database settings for sign/rail protection
  238. # get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
  239. # http://java.net/projects/essentials/sources/svn/show/lib?rev=435
  240.  
  241. # mysql, sqlite or none
  242. datatype: 'sqlite'
  243.  
  244. # If you specified MySQL above, you MUST enter the appropriate details here.
  245. # If you specified SQLite above, these will be IGNORED.
  246. username: 'root'
  247. password: 'root'
  248. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  249.  
  250. # For which block types would you like to be alerted?
  251. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  252. alert:
  253. # 10: lava
  254. # 11: still lava
  255. # 46: TNT
  256. on-placement: 10,11,46
  257. on-use:
  258. # 46: TNT
  259. on-break: 46
  260.  
  261. # Users cannot PLACE these types of blocks/items.
  262. # < 255 designates a BLOCK
  263. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
  264. blacklist:
  265. placement: 327,326,14,56,46,11,10,9,8
  266. usage: 327,326,325
  267.  
  268. #prevent people from breaking blocks
  269. #break: 20,50
  270. break:
  271.  
  272. # General physics/behavior modifications
  273. prevent:
  274. lava-flow: false
  275. water-flow: false
  276. water-bucket-flow: false
  277. fire-spread: false
  278. lava-fire-spread: false
  279. flint-fire: false
  280. portal-creation: false
  281. tnt-explosion: false
  282. creeper-explosion: false
  283. creeper-playerdamage: false
  284. creeper-blockdamage: false
  285. # Monsters won't follow players
  286. # permission essentials.protect.entitytarget.bypass disables this
  287. entitytarget: false
  288. # Prevent the spawning of creatures
  289. spawn:
  290. chicken: false
  291. cow: false
  292. creeper: false
  293. ghast: true
  294. giant: false
  295. monster: false
  296. pig: false
  297. pig_zombie: false
  298. sheep: false
  299. skeleton: false
  300. slime: true
  301. spider: false
  302. squid: false
  303. zombie: false
  304. wolf: false
  305.  
  306. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  307. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  308. creeper:
  309. max-height: -1
  310.  
  311. # Protect various blocks.
  312. protect:
  313. # Protect all signs
  314. signs: true
  315.  
  316. # Prevent users from destroying rails
  317. rails: true
  318.  
  319. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  320. # This makes it more difficult to circumvent protection, and should be enabled.
  321. # This only has an effect if "rails" or "signs" is also enabled.
  322. block-below: true
  323.  
  324. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  325. prevent-block-on-rails: false
  326.  
  327. # Disable various default physics and behaviors
  328. disable:
  329. # Should fall damage be disabled?
  330. fall: false
  331.  
  332. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  333. # They will be unable to attack users without that same permission node.
  334. pvp: false
  335.  
  336. # Should drowning damage be disabled?
  337. # (Split into two behaviors; generally, you want both set to the same value)
  338. drown: false
  339. suffocate: false
  340.  
  341. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  342. lavadmg: false
  343.  
  344. # Should arrow damage be disabled
  345. projectiles: false
  346.  
  347. # This will disable damage from touching cacti.
  348. contactdmg: false
  349.  
  350. # Burn, baby, burn! Should fire damage be disabled?
  351. firedmg: false
  352.  
  353. # Should people with build: false in permissions be allowed to build
  354. # Set true to disable building for those people
  355. build: true
  356.  
  357. ############################################################
  358. # +------------------------------------------------------+ #
  359. # | New Players | #
  360. # +------------------------------------------------------+ #
  361. ############################################################
  362.  
  363. newbies:
  364. # Should we announce to the server when someone logs in for the first time?
  365. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  366. # If not, set to ''
  367. #announce-format: ''
  368. announce-format: '&dWelcome {DISPLAYNAME} to the server!'
  369.  
  370. # When we spawn for the first time, which spawnpoint do we use?
  371. spawnpoint: newbies
  372.  
  373. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement