Advertisement
Guest User

CONFIG

a guest
Sep 24th, 2018
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.43 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.  
  24.  
  25. ############################################################
  26. # +------------------------------------------------------+ #
  27. # | Essentials (Global) | #
  28. # +------------------------------------------------------+ #
  29. ############################################################
  30.  
  31. # A color code between 0-9 or a-f. Set to 'none' to disable.
  32. ops-name-color: 'c'
  33.  
  34. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  35. nickname-prefix: ''
  36.  
  37. # Disable this if you have any other plugin, that modifies the displayname of a user.
  38. change-displayname: true
  39.  
  40. # Adds the prefix and suffix to the displayname of the player, so it will be displayed in messages and lists.
  41. # The prefix/suffix can be set using Permissions, Group Manager or PermissionsEx.
  42. # The value of change-displayname (above) has to be true.
  43. add-prefix-suffix: false
  44.  
  45. # The delay, in seconds, required between /home, /tp, etc.
  46. teleport-cooldown: 0
  47.  
  48. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  49. teleport-delay: 0
  50.  
  51. # The delay, in seconds, required between /heal attempts
  52. heal-cooldown: 60
  53.  
  54. # The number of items given if the quantity parameter is left out in /item or /give.
  55. default-stack-size: 64
  56.  
  57. # What to prevent from /i /give
  58. # e.g item-spawn-blacklist: 46,11,10
  59. item-spawn-blacklist:
  60.  
  61. # Set this to true if you want permission based item spawn rules
  62. # Note: The blacklist above will be ignored then.
  63. # Permissions:
  64. # - essentials.itemspawn.item-all
  65. # - essentials.itemspawn.item-[itemname]
  66. # - essentials.itemspawn.item-[itemid]
  67. # - essentials.give.item-all
  68. # - essentials.give.item-[itemname]
  69. # - essentials.give.item-[itemid]
  70. permission-based-item-spawn: false
  71.  
  72. # Whether or not to reclaim memory on player logout; this is technical, and should only be changed under special circumstances.
  73. # This generally increases server stability unless very specific runtime configurations are used.
  74. # HOWEVER, it is known to cause lag upon users logging OUT, so beware!
  75. reclaim-onlogout: false
  76.  
  77. # 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.
  78. spawn-protection: false
  79.  
  80. # Nether settings (switch between worlds with "/world nether" and "/world normal")
  81. # Sets whether the nether system is enabled, what folder to save the world in, and whether portals should teleport players between worlds.
  82. nether:
  83. enabled: false
  84. folder: nether
  85. portals-enabled: false
  86. generate-exit-portals: false
  87. ratio: 16
  88.  
  89. # Mob limit on spawnmob
  90. spawnmob-limit: 10
  91.  
  92. #Shall we notify users when using /lightning
  93. warn-on-smite: true
  94.  
  95. # The message of the day, displayed on connect and by typing /motd.
  96. motd:
  97. - '&cWelcome, {PLAYER}&c!'
  98. - '&fType &c/help&f for a list of commands.'
  99. - 'Currently online: {PLAYERLIST}'
  100.  
  101. # The server rules, available by typing /rules
  102. rules:
  103. - '&6[&41&6]&3Don't grief'
  104. - '&6[&42&6]&3Don't steal'
  105. - '&6[&43&6]&3Use common sense'
  106. - '&6[&44&6]&3Don't be a dick'
  107. - '&6[&45&6]&3Don't be Jasmine'
  108. - '&6[&46&6]&3Don't kill people unless they are asking for it'
  109. - '&6[&47&6]&3Keep your heresy to a minimum'
  110.  
  111. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
  112. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
  113. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
  114. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
  115. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
  116. # such as /egod, will always grant Essentials priority.
  117. # We should try to take priority over /god. If this doesn't work, use
  118. # /essentials:god or /egod. If god is set using WorldGuard, use /ungod to remove then use whichever you see fit.
  119. overridden-commands:
  120. - god
  121.  
  122. # Disabled commands will be completelly unavailable on the server.
  123. disabled-commands:
  124. # - nick
  125.  
  126. # Restricted commands have been removed.
  127. # Now we have a whitelist, all commands not on this list are only available to ops.
  128. # These will have NO EFFECT if you have Permissions installed!
  129. # They are here only if you want something simpler than Permissions.
  130. # These are the permissions without the "essentials." part.
  131. player-commands:
  132. - afk
  133. - back
  134. - back.ondeath
  135. - balance
  136. - clearinventory
  137. - compass
  138. - depth
  139. - getpos
  140. - geoip.show
  141. - help
  142. - helpop
  143. - home
  144. - home.others
  145. - ignore
  146. - info
  147. - kit
  148. - list
  149. - mail
  150. - mail.send
  151. - me
  152. - motd
  153. - msg
  154. - nick
  155. - pay
  156. - ping
  157. - portal
  158. - powertool
  159. - protect
  160. - r
  161. - rules
  162. - seen
  163. - sell
  164. - sethome
  165. - setxmpp
  166. - signs.create.protection
  167. - signs.create.trade
  168. - signs.break.protection
  169. - signs.break.trade
  170. - signs.use.balance
  171. - signs.use.buy
  172. - signs.use.disposal
  173. - signs.use.free
  174. - signs.use.heal
  175. - signs.use.mail
  176. - signs.use.protection
  177. - signs.use.sell
  178. - signs.use.time
  179. - signs.use.trade
  180. - signs.use.warp
  181. - signs.use.weather
  182. - spawn
  183. - suicide
  184. - tpa
  185. - tpaccept
  186. - tpahere
  187. - tpdeny
  188. - warp
  189. - warp.list
  190. - world
  191. - worth
  192. - xmpp
  193.  
  194. # Note: All items MUST be followed by a quantity!
  195. # Times are measured in seconds.
  196. kits:
  197. tools:
  198. delay: 10
  199. items:
  200. - 277 1
  201. - 278 1
  202. - 279 1
  203.  
  204. # Disable all signs
  205. signs-disabled: false
  206.  
  207. # Backup runs a command while saving is disabled
  208. backup:
  209. # Interval in minutes
  210. interval: 60
  211. # Add a command that backups your data, e.g.
  212. # command: 'rdiff-backup World1 backups/World1'
  213.  
  214. # Set this true to enable permission per warp.
  215. per-warp-permission: false
  216.  
  217. # Sort output of /list command by groups
  218. sort-list-by-groups: false
  219.  
  220. # More output to the console
  221. debug: false
  222.  
  223. # Set the locale for all messages
  224. # If you don't set this, the default locale of the server will be used.
  225. # Don't forget to remove the # infront of the line
  226. #locale: de_DE
  227.  
  228. #turn off god mode when people exit
  229. remove-god-on-disconnect: false
  230.  
  231. # Use the permission system of bukkit
  232. # This only works if no other permission plugins are installed
  233. use-bukkit-permissions: false
  234.  
  235. ############################################################
  236. # +------------------------------------------------------+ #
  237. # | EssentialsHome | #
  238. # +------------------------------------------------------+ #
  239. ############################################################
  240.  
  241. # When users die, should they respawn at their homes, instead of the spawnpoint?
  242. respawn-at-home: true
  243.  
  244. # When a user interacts with a bed, should their home be set to that location?
  245. # 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.
  246. bed-sethome: false
  247.  
  248. #if no home is set send you to spawn when /home is used
  249. spawn-if-no-home: true
  250.  
  251.  
  252. ############################################################
  253. # +------------------------------------------------------+ #
  254. # | EssentialsEco | #
  255. # +------------------------------------------------------+ #
  256. ############################################################
  257.  
  258. # Defines the balance with which new players begin. Defaults to 0.
  259. starting-balance: 0
  260.  
  261. # worth-# defines the value of an item when it is sold to the server via /sell.
  262. # These are now defined in worth.yml
  263.  
  264. # Defines the cost to use the given commands PER USE
  265. command-costs:
  266. # /example costs $1000 PER USE
  267. #example: 1000
  268. # /kit tools costs $1500 PER USE
  269. #kit-tools: 1500
  270.  
  271. # Set this to a currency symbol you want to use.
  272. currency-symbol: '$'
  273.  
  274. # Set the maximum amount of money a player can have
  275. # The amount is always limited to 10 trillions because of the limitations of a java double
  276. max-money: 10000000000000
  277.  
  278. # Enable this to log all interactions with trade/buy/sell signs and sell command
  279. economy-log-enabled: false
  280.  
  281. ############################################################
  282. # +------------------------------------------------------+ #
  283. # | EssentialsHelp | #
  284. # +------------------------------------------------------+ #
  285. ############################################################
  286.  
  287. #Show other plugins commands in help
  288. non-ess-in-help: true
  289.  
  290. #Hide plugins which dont give a permission
  291. hide-permissionless-help: true
  292.  
  293. ############################################################
  294. # +------------------------------------------------------+ #
  295. # | EssentialsChat | #
  296. # +------------------------------------------------------+ #
  297. ############################################################
  298.  
  299. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  300. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  301. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  302. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  303. chat:
  304. radius: 0
  305.  
  306. # If set to the default chat format which "should" be compatible with ichat.
  307. format: '{DISPLAYNAME}{MESSAGE}'
  308. #format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'
  309.  
  310. # You can also have group-specific formats, uncomment to enable:
  311. group-formats:
  312. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&f {MESSAGE}'
  313. # Admins: '{WORLDNAME} &c[{GROUP}]&f {DISPLAYNAME}&7:&c {MESSAGE}'
  314.  
  315.  
  316.  
  317.  
  318.  
  319. ############################################################
  320. # +------------------------------------------------------+ #
  321. # | EssentialsProtect | #
  322. # +------------------------------------------------------+ #
  323. ############################################################
  324.  
  325. protect:
  326. # Database settings for sign/rail protection
  327. # get mysql.jar and sqlite and place it in your serverroot/lib directory from here:
  328. # http://java.net/projects/essentials/sources/svn/show/lib?rev=435
  329.  
  330. # mysql, sqlite or none
  331. datatype: 'sqlite'
  332.  
  333. # If you specified MySQL above, you MUST enter the appropriate details here.
  334. # If you specified SQLite above, these will be IGNORED.
  335. username: 'root'
  336. password: 'root'
  337. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  338.  
  339. # For which block types would you like to be alerted?
  340. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  341. alert:
  342. # 10: lava
  343. # 11: still lava
  344. # 46: TNT
  345. on-placement: 10,11,46
  346. on-use:
  347. # 46: TNT
  348. on-break:
  349.  
  350. # Users cannot PLACE these types of blocks/items.
  351. # < 255 designates a BLOCK
  352. # > 255 designates an ITEM (Some blocks can be placed as blocks OR items; lava blocks can be placed by lava buckets, for example.)
  353. blacklist:
  354. placement: 327,326,14,56,46,11,10,9,8
  355. usage: 327,326,325
  356.  
  357. #prevent people from breaking blocks
  358. #break: 20,50
  359. break:
  360.  
  361. # Which blocks should not be pushed by pistons
  362. piston:
  363.  
  364. # General physics/behavior modifications
  365. prevent:
  366. lava-flow: false
  367. water-flow: false
  368. water-bucket-flow: false
  369. fire-spread: true
  370. lava-fire-spread: true
  371. flint-fire: false
  372. lightning-fire-spread: true
  373. portal-creation: false
  374. tnt-explosion: true
  375. tnt-playerdamage: false
  376. fireball-explosion: true
  377. fireball-fire: false
  378. fireball-playerdamage: false
  379. creeper-explosion: true
  380. creeper-playerdamage: false
  381. creeper-blockdamage: true
  382. # Monsters won't follow players
  383. # permission essentials.protect.entitytarget.bypass disables this
  384. entitytarget: false
  385. # Prevent the spawning of creatures
  386. spawn:
  387. chicken: false
  388. cow: false
  389. creeper: false
  390. ghast: true
  391. giant: false
  392. monster: false
  393. pig: false
  394. pig_zombie: false
  395. sheep: false
  396. skeleton: false
  397. slime: true
  398. spider: false
  399. squid: false
  400. zombie: false
  401. wolf: false
  402.  
  403. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  404. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  405. creeper:
  406. max-height: -1
  407.  
  408. # Protect various blocks.
  409. protect:
  410. # Protect all signs
  411. signs: true
  412.  
  413. # Prevent users from destroying rails
  414. rails: true
  415.  
  416. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  417. # This makes it more difficult to circumvent protection, and should be enabled.
  418. # This only has an effect if "rails" or "signs" is also enabled.
  419. block-below: true
  420.  
  421. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  422. prevent-block-on-rails: false
  423.  
  424. #Store blocks / signs in memory before writing
  425. memstore: false
  426.  
  427. # Disable various default physics and behaviors
  428. disable:
  429. # Should fall damage be disabled?
  430. fall: false
  431.  
  432. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  433. # They will be unable to attack users without that same permission node.
  434. pvp: false
  435.  
  436. # Should drowning damage be disabled?
  437. # (Split into two behaviors; generally, you want both set to the same value)
  438. drown: false
  439. suffocate: false
  440.  
  441. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  442. lavadmg: false
  443.  
  444. # Should arrow damage be disabled
  445. projectiles: false
  446.  
  447. # This will disable damage from touching cacti.
  448. contactdmg: false
  449.  
  450. # Burn, baby, burn! Should fire damage be disabled?
  451. firedmg: false
  452.  
  453. # Should the damage after hit by a lightning be disabled?
  454. lightning: false
  455.  
  456. # Should people with build: false in permissions be allowed to build
  457. # Set true to disable building for those people
  458. build: true
  459.  
  460. # Should people with build: false in permissions be allowed to use items
  461. # Set true to disable useing for those people
  462. use: true
  463.  
  464. #Should we tell people they are not allowed to build
  465. warn-on-build-disallow: false
  466.  
  467.  
  468. #disable weather options
  469. weather:
  470. storm: false
  471. thunder: false
  472. lightning: false
  473.  
  474. ############################################################
  475. # +------------------------------------------------------+ #
  476. # | New Players | #
  477. # +------------------------------------------------------+ #
  478. ############################################################
  479.  
  480. newbies:
  481. # Should we announce to the server when someone logs in for the first time?
  482. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  483. # If not, set to ''
  484. #announce-format: ''
  485. announce-format: '&dWelcome {DISPLAYNAME} to the Pre-SMP!'
  486.  
  487. # When we spawn for the first time, which spawnpoint do we use?
  488. spawnpoint: newbies
  489.  
  490. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement