Guest User

Untitled

a guest
Apr 2nd, 2018
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.16 KB | None | 0 0
  1. 1. ############################################################

  2. 2. # +------------------------------------------------------+ #

  3. 3. # |                       Notes                          | #

  4. 4. # +------------------------------------------------------+ #

  5. 5. ############################################################

  6. 6.  

  7. 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. 8. # If you receive an error when Essentials loads, ensure that:

  9. 9. #   - No tabs are present: YAML only allows spaces

  10. 10. #   - Indents are correct: YAML hierarchy is based entirely on indentation

  11. 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 apostrophe)

  12. 12. #   - Text with symbols is enclosed in single or double quotation marks

  13. 13.  

  14. 14. # If you have problems join the Essentials help support channel: http://tiny.cc/EssentialsChat

  15. 15.  

  16. 16. ############################################################

  17. 17. # +------------------------------------------------------+ #

  18. 18. # |                 Essentials (Global)                  | #

  19. 19. # +------------------------------------------------------+ #

  20. 20. ############################################################

  21. 21.  

  22. 22. # A color code between 0-9 or a-f. Set to 'none' to disable.

  23. 23. ops-name-color: '4'

  24. 24.  

  25. 25. # The character(s) to prefix all nicknames, so that you know they are not true usernames.

  26. 26. nickname-prefix: ''

  27. 27.  

  28. 28. # Disable this if you have any other plugin, that modifies the displayname of a user.

  29. 29. change-displayname: true

  30. 30.  

  31. 31. # When this option is enabled, the (tab) player list will be updated with the displayname.

  32. 32. # The value of change-displayname (above) has to be true.

  33. 33. #change-playerlist: true

  34. 34.  

  35. 35. # Adds the prefix and suffix to the displayname of the player, so it will be displayed in messages and lists.

  36. 36. # The prefix/suffix can be set using Permissions, Group Manager or PermissionsEx.

  37. 37. # The value of change-displayname (above) has to be true.

  38. 38. # If you don't set this, it will default to true if essentials chat is installed.

  39. 39. # Don't forget to remove the # in front of the line

  40. 40. #add-prefix-suffix: false

  41. 41.  

  42. 42. # The delay, in seconds, required between /home, /tp, etc.

  43. 43. teleport-cooldown: 0

  44. 44.  

  45. 45. # The delay, in seconds, before a user actually teleports.  If the user moves or gets attacked in this timeframe, the teleport never occurs.

  46. 46. teleport-delay: 0

  47. 47.  

  48. 48. # The delay, in seconds, a player can't be attacked by other players after they have been teleported by a command

  49. 49. # This will also prevent the player attacking other players

  50. 50. teleport-invulnerability: 4

  51. 51.  

  52. 52. # The delay, in seconds, required between /heal attempts

  53. 53. heal-cooldown: 60

  54. 54.  

  55. 55. # What to prevent from /i /give

  56. 56. # e.g item-spawn-blacklist: 46,11,10

  57. 57. item-spawn-blacklist:

  58. 58. 

  59. 59. # Set this to true if you want permission based item spawn rules

  60. 60. # Note: The blacklist above will be ignored then.

  61. 61. # Permissions:

  62. 62. #  - essentials.itemspawn.item-all

  63. 63. #  - essentials.itemspawn.item-[itemname]

  64. 64. #  - essentials.itemspawn.item-[itemid]

  65. 65. #  - essentials.give.item-all

  66. 66. #  - essentials.give.item-[itemname]

  67. 67. #  - essentials.give.item-[itemid]

  68. 68. permission-based-item-spawn: false

  69. 69.  

  70. 70. # Mob limit on the /spawnmob command per execution

  71. 71. spawnmob-limit: 10

  72. 72.  

  73. 73. # Shall we notify users when using /lightning

  74. 74. warn-on-smite: true

  75. 75.  

  76. 76. # motd and rules are now configured in the files motd.txt and rules.txt

  77. 77.  

  78. 78. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take priority.

  79. 79. # Commands in in this list, will tell Essentials to 'not give up' the command to other plugins.

  80. 80. # In this state, which plugin 'wins' appears to be almost random.

  81. 81. #

  82. 82. # If you have two plugin with the same command and you wish to force Essentials to take over, you need an alias.

  83. 83. # To force essentials to take 'god' alias 'god' to 'egod'.

  84. 84. # See http://wiki.bukkit.org/Bukkit.yml#aliases for more information

  85. 85.  

  86. 86. overridden-commands:

  87. 87. #  - god

  88. 88.  

  89. 89. # Disabled commands will be completely unavailable on the server.

  90. 90. # Disabling commands here will have no effect on command conflicts.

  91. 91. disabled-commands:

  92. 92. # - nick

  93. 93.  

  94. 94. # If you do not wish to use a permission system, you can define a list of 'player perms' below.

  95. 95. # This list has no effect if your using a supported permissions system.

  96. 96. # If your using an unsupported permissions system simply delete this section.

  97. 97. # Whitelist the commands and permissions you wish to give players by default (everything else is op only).

  98. 98. # These are the permissions without the "essentials." part.

  99. 99. player-commands:

  100. 100.  - afk

  101. 101.   - afk.auto

  102. 102.   - back

  103. 103.   - back.ondeath

  104. 104.   - balance

  105. 105.   - balance.others

  106. 106.   - balancetop

  107. 107.   - build

  108. 108.   - chat.color

  109. 109.   - chat.format

  110. 110.   - chat.shout

  111. 111.   - chat.question

  112. 112.   - clearinventory

  113. 113.   - compass

  114. 114.   - depth

  115. 115.   - delhome

  116. 116.   - getpos

  117. 117.   - geoip.show

  118. 118.   - help

  119. 119.   - helpop

  120. 120.   - home

  121. 121.   - home.others

  122. 122.   - ignore

  123. 123.   - info

  124. 124.   - itemdb

  125. 125.   - kit

  126. 126.   - kits.tools

  127. 127.   - list

  128. 128.   - mail

  129. 129.   - mail.send

  130. 130.   - me

  131. 131.   - motd

  132. 132.   - msg

  133. 133.   - msg.color

  134. 134.   - nick

  135. 135.   - near

  136. 136.   - pay

  137. 137.   - ping

  138. 138.   - protect

  139. 139.   - r

  140. 140.   - rules

  141. 141.   - realname

  142. 142.   - seen

  143. 143.   - sell

  144. 144.   - sethome

  145. 145.   - setxmpp

  146. 146.   - signs.create.protection

  147. 147.   - signs.create.trade

  148. 148.   - signs.break.protection

  149. 149.   - signs.break.trade

  150. 150.   - signs.use.balance

  151. 151.   - signs.use.buy

  152. 152.   - signs.use.disposal

  153. 153.   - signs.use.enchant

  154. 154.   - signs.use.free

  155. 155.   - signs.use.gamemode

  156. 156.   - signs.use.heal

  157. 157.   - signs.use.info

  158. 158.   - signs.use.kit

  159. 159.   - signs.use.mail

  160. 160.   - signs.use.protection

  161. 161.   - signs.use.repair

  162. 162.   - signs.use.sell

  163. 163.   - signs.use.time

  164. 164.   - signs.use.trade

  165. 165.   - signs.use.warp

  166. 166.   - signs.use.weather

  167. 167.   - spawn

  168. 168.   - suicide

  169. 169.   - time

  170. 170.   - tpa

  171. 171.   - tpaccept

  172. 172.   - tpahere

  173. 173.   - tpdeny

  174. 174.   - warp

  175. 175.   - warp.list

  176. 176.   - world

  177. 177.   - worth

  178. 178.   - xmpp

  179. 179.  

  180. 180. # Note: All items MUST be followed by a quantity!

  181. 181. # All kit names should be lower case, and will be treated as lower in permissions/costs.

  182. 182. # Syntax: - itemID[:DataValue] Amount [Enchantment:Level]..

  183. 183. # 'delay' refers to the cooldown between how often you can use each kit, measured in seconds. 

  184. 271. # Essentials Sign Control

  185. 272. # See http://wiki.ess3.net/wiki/Sign_Tutorial for instructions on how to use these.

  186. 273. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.

  187. 274. # Essentials Colored sign support will be enabled when any sign types are enabled.

  188. 275. # Color is not an actual sign, its for enabling using color codes on signs, when the correct permissions are given.

  189. 276.  

  190. 277. enabledSigns:

  191. 278.  #- color

  192. 279.   #- balance

  193. 280.   #- buy

  194. 281.   #- sell

  195. 282.   #- trade

  196. 283.   #- free

  197. 284.   #- disposal

  198. 285.   #- warp

  199. 286.   #- kit

  200. 287.   #- mail

  201. 288.   #- enchant

  202. 289.   #- gamemode

  203. 290.   #- heal

  204. 291.   #- info

  205. 292.   #- spawnmob

  206. 293.   #- repair

  207. 294.   #- time

  208. 295.   #- weather  

  209. 296.  

  210. 297. # How many times per second can Essentials signs be interacted with per player.

  211. 298. # Values should be between 1-20, 20 being virtually no lag protection.

  212. 299. # Lower numbers will reduce the possibility of lag, but may annoy players.

  213. 300. sign-use-per-second: 4

  214. 301.  

  215. 302. # Backup runs a batch/bash command while saving is disabled

  216. 303. backup:

  217. 304.  # Interval in minutes

  218. 305.   interval: 30

  219. 306.   # Unless you add a valid backup command or script here, this feature will be useless.

  220. 307.   # Use 'save-all' to simply force regular world saving without backup.

  221. 308.   #command: 'rdiff-backup World1 backups/World1'

  222. 309.  

  223. 310. # Set this true to enable permission per warp.

  224. 311. per-warp-permission: false

  225. 312.  

  226. 313. # Sort output of /list command by groups

  227. 314. sort-list-by-groups: false

  228. 315.  

  229. 316. # More output to the console

  230. 317. debug: false

  231. 318.  

  232. 319. # Set the locale for all messages

  233. 320. # If you don't set this, the default locale of the server will be used.

  234. 321. # Don't forget to remove the # in front of the line

  235. 322. #locale: de_DE

  236. 323.  

  237. 324. # Turn off god mode when people exit

  238. 325. remove-god-on-disconnect: false

  239. 326.  

  240. 327. # Auto-AFK

  241. 328. # After this timeout in seconds, the user will be set as afk.

  242. 329. # Set to -1 for no timeout.

  243. 330. auto-afk: 300

  244. 331.  

  245. 332. # Auto-AFK Kick

  246. 333. # After this timeout in seconds, the user will be kicked from the server.

  247. 334. # Set to -1 for no timeout.

  248. 335. auto-afk-kick: -1

  249. 336.  

  250. 337. # Set this to true, if you want to freeze the player, if he is afk.

  251. 338. # Other players or monsters can't push him out of afk mode then.

  252. 339. # This will also enable temporary god mode for the afk player.

  253. 340. # The player has to use the command /afk to leave the afk mode.

  254. 341. freeze-afk-players: false

  255. 342.  

  256. 343. # When the player is afk, should he be able to pickup items?

  257. 344. # Enable this, when you don't want people idling in mob traps.

  258. 345. disable-item-pickup-while-afk: false

  259. 346.  

  260. 347. # Should we automatically remove afk status when the player moves?

  261. 348. # Player will be removed from afk on chat/command regardless of this setting.

  262. 349. # Disable this to reduce server lag.

  263. 350. cancel-afk-on-move: true

  264. 351.  

  265. 352. # You can disable the death messages of Minecraft here

  266. 353. death-messages: true

  267. 354.  

  268. 355. # Add worlds to this list, if you want to automatically disable god mode there

  269. 356. no-god-in-worlds:

  270. 357. #  - world_nether

  271. 358.  

  272. 359. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands

  273. 360. # This applies to /world, /back, /tp[a|o][here|all], but not warps.

  274. 361. # Give someone permission to teleport to a world with essentials.worlds.<worldname>

  275. 362. # This does not effect the /home command, there is a separate toggle below for this.

  276. 363. world-teleport-permissions: false

  277. 364.  

  278. 365. # The number of items given if the quantity parameter is left out in /item or /give.

  279. 366. # If this number is below 1, the maximum stack size size is given. If over-sized stacks

  280. 367. # are not enabled, any number higher then the maximum stack size results in more than one stack.

  281. 368. default-stack-size: -1

  282. 369.  

  283. 370. # Over-sized stacks are stacks that ignore the normal max stack size.

  284. 371. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.

  285. 372. # How many items should be in an over-sized stack?

  286. 373. oversized-stacksize: 64

  287. 374.  

  288. 375. # Allow repair of enchanted weapons and armor.

  289. 376. # If you set this to false, you can still allow it for certain players using the permission

  290. 377. # essentials.repair.enchanted

  291. 378. repair-enchanted: true

  292. 379.  

  293. 380. #Do you want essentials to keep track of previous location for /back in the teleport listener?

  294. 381. #If you set this to true any plugin that uses teleport will have the previous location registered.

  295. 382. register-back-in-listener: false

  296. 383.  

  297. 384. #Delay to wait before people can cause attack damage after logging in

  298. 385. login-attack-delay: 5

  299. 386.  

  300. 387. #Set the max fly speed, values range from 0.1 to 1.0

  301. 388. max-fly-speed: 0.8

  302. 389.  

  303. 390. ############################################################

  304. 391. # +------------------------------------------------------+ #

  305. 392. # |                   EssentialsHome                     | #

  306. 393. # +------------------------------------------------------+ #

  307. 394. ############################################################

  308. 395.  

  309. 396. # Allows people to set their bed at daytime

  310. 397. update-bed-at-daytime: true

  311. 398.  

  312. 399. # Set to true to enable per-world permissions for using homes to teleport between worlds

  313. 400. # This applies to the /home only.

  314. 401. # Give someone permission to teleport to a world with essentials.worlds.<worldname>

  315. 402. world-home-permissions: false

  316. 403.  

  317. 404. # Allow players to have multiple homes.

  318. 405. # Players need essentials.sethome.multiple before they can have more than 1 home, defaults to 'default' below.

  319. 406. # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip

  320. 407. # People with essentials.sethome.multiple.unlimited are not limited by these numbers.

  321. 408. sethome-multiple:

  322. 409.   default: 3

  323. 410.   # essentials.sethome.multiple.vip

  324. 411.   vip: 5

  325. 412.   # essentials.sethome.multiple.staff

  326. 413.   staff: 10

  327. 414.  

  328. 415. # Set timeout in seconds for players to accept tpa before request is cancelled.

  329. 416. # Set to 0 for no timeout

  330. 417. tpa-accept-cancellation: 0

  331. 418.  

  332. 419. ############################################################

  333. 420. # +------------------------------------------------------+ #

  334. 421. # |                   EssentialsEco                      | #

  335. 422. # +------------------------------------------------------+ #

  336. 423. ############################################################

  337. 424.  

  338. 425. # Defines the balance with which new players begin.  Defaults to 0.

  339. 426. starting-balance: 0

  340. 427.  

  341. 428. # worth-# defines the value of an item when it is sold to the server via /sell.

  342. 429. # These are now defined in worth.yml

  343. 430.  

  344. 431. # Defines the cost to use the given commands PER USE

  345. 432. # Some commands like /repair have sub-costs, check the wiki for more information.

  346. 433. command-costs:

  347. 434.  # /example costs $1000 PER USE

  348. 435.   #example: 1000

  349. 436.   # /kit tools costs $1500 PER USE

  350. 437.   #kit-tools: 1500

  351. 438.  

  352. 439. # Set this to a currency symbol you want to use.

  353. 440. currency-symbol: '$'

  354. 441.  

  355. 442. # Set the maximum amount of money a player can have

  356. 443. # The amount is always limited to 10 trillions because of the limitations of a java double

  357. 444. max-money: 10000000000000

  358. 445.  

  359. 446. # Set the minimum amount of money a player can have (must be above the negative of max-money).

  360. 447. # Setting this to 0, will disable overdrafts/loans completely.  Users need 'essentials.eco.loan' perm to go below 0.

  361. 448. min-money: -10000

  362. 449.  

  363. 450. # Enable this to log all interactions with trade/buy/sell signs and sell command

  364. 451. economy-log-enabled: false

  365. 452.  

  366. 453. ############################################################

  367. 454. # +------------------------------------------------------+ #

  368. 455. # |                   EssentialsHelp                     | #

  369. 456. # +------------------------------------------------------+ #

  370. 457. ############################################################

  371. 458.  

  372. 459. # Show other plugins commands in help

  373. 460. non-ess-in-help: true

  374. 461.  

  375. 462. # Hide plugins which do not give a permission

  376. 463. # You can override a true value here for a single plugin by adding a permission to a user/group.

  377. 464. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help regardless.

  378. 465. # You can use negative permissions to remove access to just a single plugins help if the following is enabled.

  379. 466. hide-permissionless-help: true

  380. 467.  

  381. 468. ############################################################

  382. 469. # +------------------------------------------------------+ #

  383. 470. # |                   EssentialsChat                     | #

  384. 471. # +------------------------------------------------------+ #

  385. 472. ############################################################

  386. 473.  

  387. 474. chat:

  388. 475. 

  389. 476.   # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks.  Set to 0 to make all chat global.

  390. 477.   # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.

  391. 478.   # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)

  392. 479.   # Users with essentials.chat.question can override this by prefixing text with a question mark (?)

  393. 480.   # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."

  394. 481.   radius: 0

  395. 482.  

  396. 483.   # Chat formatting can be done in two ways, you can either define a standard format for all chat

  397. 484.   # Or you can give a group specific chat format, to give some extra variation.

  398. 485.   # If set to the default chat format which "should" be compatible with ichat.

  399. 486.   # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting  

  400. 487.  

  401. 488.   format: '<{DISPLAYNAME}> {MESSAGE}'

  402. 489.   #format: '&7[{GROUP}]&r {DISPLAYNAME}&8»&7 {MESSAGE}'

  403. 490.  

  404. 491.   group-formats:

  405. 492.  #  Default: {DISPLAYNAME}&7:&r {MESSAGE}'

  406. 493.   #  Admins: &c[{GROUP}]&r {DISPLAYNAME}&8»&7 {MESSAGE}'

  407. 494.  

  408. 495.   # If you are using group formats make sure to remove the '#' to allow the setting to be read.

  409. 496.  

  410. 497. ############################################################

  411. 498. # +------------------------------------------------------+ #

  412. 499. # |                 EssentialsProtect                    | #

  413. 500. # +------------------------------------------------------+ #

  414. 501. ############################################################

  415. 502.  

  416. 503. protect:

  417. 504.  # Database settings for sign/rail protection

  418. 505.  

  419. 506.   # mysql or sqlite

  420. 507.   # We strongly recommend against using mysql here, unless you have a good reason.

  421. 508.   # Sqlite seems to be faster in almost all cases, and in some cases mysql can be much slower.

  422. 509.   datatype: 'sqlite'

  423. 510.  

  424. 511.   # If you specified MySQL above, you MUST enter the appropriate details here.

  425. 512.   # If you specified SQLite above, these will be IGNORED.

  426. 513.   username: 'root'

  427. 514.   password: 'root'

  428. 515.   mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'

  429. 516.  

  430. 517.   # General physics/behavior modifications

  431. 518.   prevent:

  432. 519.     lava-flow: false

  433. 520.     water-flow: false

  434. 521.     water-bucket-flow: false

  435. 522.     fire-spread: true

  436. 523.     lava-fire-spread: true

  437. 524.     flint-fire: false

  438. 525.     lightning-fire-spread: true

  439. 526.     portal-creation: false

  440. 527.     tnt-explosion: false

  441. 528.     tnt-playerdamage: false

  442. 529.     fireball-explosion: false

  443. 530.     fireball-fire: false

  444. 531.     fireball-playerdamage: false

  445. 532.     creeper-explosion: false

  446. 533.     creeper-playerdamage: false

  447. 534.     creeper-blockdamage: false

  448. 535.     enderdragon-blockdamage: true

  449. 536.     enderman-pickup: false

  450. 537.     villager-death: false

  451. 538.     # Monsters won't follow players

  452. 539.     # permission essentials.protect.entitytarget.bypass disables this

  453. 540.     entitytarget: false

  454. 541.     # Prevent the spawning of creatures

  455. 542.     spawn:

  456. 543.       creeper: false

  457. 544.       skeleton: false

  458. 545.       spider: false

  459. 546.       giant: false

  460. 547.       zombie: false

  461. 548.       slime: false

  462. 549.       ghast: false

  463. 550.       pig_zombie: false

  464. 551.       enderman: false

  465. 552.       cave_spider: false

  466. 553.       silverfish: false

  467. 554.       blaze: false

  468. 555.       magma_cube: false

  469. 556.       ender_dragon: false

  470. 557.       pig: false

  471. 558.       sheep: false

  472. 559.       cow: false

  473. 560.       chicken: false

  474. 561.       squid: false

  475. 562.       wolf: false

  476. 563.       mushroom_cow: false

  477. 564.       snowman: false

  478. 565.       ocelot: false

  479. 566.       iron_golem: false

  480. 567.       villager: false

  481. 568.  

  482. 569.   # Maximum height the creeper should explode. -1 allows them to explode everywhere.

  483. 570.   # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.

  484. 571.   creeper:

  485. 572.     max-height: -1

  486. 573.  

  487. 574.   # Protect various blocks.

  488. 575.   protect:

  489. 576.    # Protect all signs

  490. 577.     signs: false

  491. 578.  

  492. 579.     # Prevent users from destroying rails

  493. 580.     rails: false

  494. 581.  

  495. 582.     # Blocks below rails/signs are also protected if the respective rail/sign is protected.

  496. 583.     # This makes it more difficult to circumvent protection, and should be enabled.

  497. 584.     # This only has an effect if "rails" or "signs" is also enabled.

  498. 585.     block-below: true

  499. 586.  

  500. 587.     # Prevent placing blocks above protected rails, this is to stop a potential griefing

  501. 588.     prevent-block-on-rails: false

  502. 589.  

  503. 590.     # Store blocks / signs in memory before writing

  504. 591.     memstore: false

  505. 592.  

  506. 593.   # Disable various default physics and behaviors

  507. 594.   disable:

  508. 595.    # Should fall damage be disabled?

  509. 596.     fall: false

  510. 597.  

  511. 598.     # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.

  512. 599.     # They will be unable to attack users without that same permission node.

  513. 600.     pvp: false

  514. 601.  

  515. 602.     # Should drowning damage be disabled?

  516. 603.     # (Split into two behaviors; generally, you want both set to the same value)

  517. 604.     drown: false

  518. 605.     suffocate: false

  519. 606.  

  520. 607.     # Should damage via lava be disabled?  Items that fall into lava will still burn to a crisp. ;)

  521. 608.     lavadmg: false

  522. 609.  

  523. 610.     # Should arrow damage be disabled

  524. 611.     projectiles: false

  525. 612.  

  526. 613.     # This will disable damage from touching cacti.

  527. 614.     contactdmg: false

  528. 615.  

  529. 616.     # Burn, baby, burn!  Should fire damage be disabled?

  530. 617.     firedmg: false

  531. 618.  

  532. 619.     # Should the damage after hit by a lightning be disabled?

  533. 620.     lightning: false

  534. 621.  

  535. 622.     # Disable weather options

  536. 623.     weather:

  537. 624.       storm: false

  538. 625.       thunder: false

  539. 626.       lightning: false    

  540. 627.  

  541. 628. ############################################################

  542. 629. # +------------------------------------------------------+ #

  543. 630. # |                EssentialsAntiBuild                   | #

  544. 631. # +------------------------------------------------------+ #

  545. 632. ############################################################

  546. 633.  

  547. 634.   # Disable various default physics and behaviors

  548. 635.  

  549. 636.     # Should people with build: false in permissions be allowed to build

  550. 637.     # Set true to disable building for those people

  551. 638.     # Setting to false means EssentialsAntiBuild will never prevent you from building

  552. 639.     build: true

  553. 640.  

  554. 641.     # Should people with build: false in permissions be allowed to use items

  555. 642.     # Set true to disable using for those people

  556. 643.     # Setting to false means EssentialsAntiBuild will never prevent you from using

  557. 644.     use: true

  558. 645.  

  559. 646.     # Should we tell people they are not allowed to build

  560. 647.     warn-on-build-disallow: true

  561. 648.  

  562. 649.   # For which block types would you like to be alerted?

  563. 650.   # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.

  564. 651.   # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket

  565. 652.   alert:

  566. 653.     on-placement: 10,11,46,327

  567. 654.     on-use: 327

  568. 655.     on-break:

  569. 656. 

  570. 657.   blacklist:

  571. 658. 

  572. 659.     # Which blocks should people be prevented from placing

  573. 660.     placement: 10,11,46,327

  574. 661.  

  575. 662.     # Which items should people be prevented from using

  576. 663.     usage: 327

  577. 664.  

  578. 665.     # Which blocks should people be prevented from breaking

  579. 666.     break:

  580. 667. 

  581. 668.     # Which blocks should not be pushed by pistons

  582. 669.     piston:

  583. 670. 

  584. 671. ############################################################

  585. 672. # +------------------------------------------------------+ #

  586. 673. # |            Essentials Spawn / New Players            | #

  587. 674. # +------------------------------------------------------+ #

  588. 675. ############################################################

  589. 676.  

  590. 677. newbies:

  591. 678.  # Should we announce to the server when someone logs in for the first time?

  592. 679.   # If so, use this format, replacing {DISPLAYNAME} with the player name.

  593. 680.   # If not, set to ''

  594. 681.   #announce-format: ''

  595. 682.   announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'

  596. 683.  

  597. 684.   # When we spawn for the first time, which spawnpoint do we use?

  598. 685.   # Set to "none" if you want to use the spawn point of the world.

  599. 686.   spawnpoint: newbies

  600. 687.  

  601. 688.   # Do we want to give users anything on first join? Set to '' to disable

  602. 689.   # This kit will be given regardless  of cost, and permissions.

  603. 690.   #kit: ''

  604. 691.   kit: tools

  605. 692.  

  606. 693. # Set this to lowest, if you want Multiverse to handle the respawning

  607. 694. # Set this to high, if you want EssentialsSpawn to handle the respawning

  608. 695. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning

  609. 696. respawn-listener-priority: high

  610. 697.  

  611. 698. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?

  612. 699. respawn-at-home: false

  613. 700.  

  614. 701. # End of File <-- No seriously, you're done with configuration.
Add Comment
Please, Sign In to add comment