Advertisement
Guest User

Untitled

a guest
Jan 27th, 2017
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.65 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 hierarchy 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: 'none'
  29.  
  30. # The character(s) to prefix all nicknames, so that you know they are not true usernames.
  31. nickname-prefix: ''
  32.  
  33. # Disable this if you have any other plugin, that modifies the displayname of a user.
  34. change-displayname: true
  35.  
  36. # When this option is enabled, the (tab) player list will be updated with the displayname.
  37. # The value of change-displayname (above) has to be true.
  38. #change-playerlist: 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. # If you don't set this, it will default to true if essentials chat is installed.
  44. # Don't forget to remove the # in front of the line
  45. #add-prefix-suffix: false
  46.  
  47. # The delay, in seconds, required between /home, /tp, etc.
  48. teleport-cooldown: 5
  49.  
  50. # The delay, in seconds, before a user actually teleports. If the user moves or gets attacked in this timeframe, the teleport never occurs.
  51. teleport-delay: 5
  52.  
  53. # The delay, in seconds, a player can't be attacked by other players after he has been teleported by a command
  54. # This will also prevent that the player can attack other players
  55. teleport-invulnerability: 2
  56.  
  57. # The delay, in seconds, required between /heal attempts
  58. heal-cooldown: 60
  59.  
  60. # What to prevent from /i /give
  61. # e.g item-spawn-blacklist: 46,11,10
  62. item-spawn-blacklist:
  63.  
  64. # Set this to true if you want permission based item spawn rules
  65. # Note: The blacklist above will be ignored then.
  66. # Permissions:
  67. # - essentials.itemspawn.item-all
  68. # - essentials.itemspawn.item-[itemname]
  69. # - essentials.itemspawn.item-[itemid]
  70. # - essentials.give.item-all
  71. # - essentials.give.item-[itemname]
  72. # - essentials.give.item-[itemid]
  73. permission-based-item-spawn: false
  74.  
  75. # Mob limit on spawnmob
  76. spawnmob-limit: 25
  77.  
  78. # Shall we notify users when using /lightning
  79. warn-on-smite: true
  80.  
  81. # motd and rules are now configured in the files motd.txt and rules.txt
  82.  
  83. # When a command conflicts with another plugin, by default, Essentials will try to force the OTHER plugin to take
  84. # priority. If a command is in this list, Essentials will try to give ITSELF priority. This does not always work:
  85. # usually whichever plugin was updated most recently wins out. However, the full name of the command will always work.
  86. # For example, if WorldGuard and Essentials are both enabled, and WorldGuard takes control over /god, /essentials:god
  87. # will still map to Essentials, whereas it might normally get forced upon WorldGuard. Commands prefixed with an "e",
  88. # such as /egod, will always grant Essentials priority.
  89. # We should try to take priority over /god. If this doesn't work, use
  90. # /essentials:god or /egod. If god is set using WorldGuard, use /ungod to remove then use whichever you see fit.
  91. overridden-commands:
  92. - god
  93.  
  94. # Disabled commands will be completely unavailable on the server.
  95. disabled-commands:
  96.  
  97. # Restricted commands have been removed.
  98. # Now we have a whitelist, all commands not on this list are only available to ops.
  99. # These will have NO EFFECT if you have Permissions installed!
  100. # They are here only if you want something simpler than Permissions.
  101. # These are the permissions without the "essentials." part.
  102. player-commands:
  103. - afk
  104. - back
  105. - back.ondeath
  106. - balance
  107. - balance.others
  108. - balancetop
  109. - chat.color
  110. - chat.format
  111. - chat.shout
  112. - chat.question
  113. - clearinventory
  114. - compass
  115. - depth
  116. - delhome
  117. - getpos
  118. - geoip.show
  119. - help
  120. - helpop
  121. - home
  122. - home.others
  123. - ignore
  124. - info
  125. - itemdb
  126. - kit
  127. - kit.tools
  128. - list
  129. - mail
  130. - mail.send
  131. - me
  132. - motd
  133. - msg
  134. - msg.color
  135. - nick
  136. - near
  137. - pay
  138. - ping
  139. - powertool
  140. - powertooltoggle
  141. - protect
  142. - r
  143. - rules
  144. - realname
  145. - seen
  146. - sell
  147. - sethome
  148. - setxmpp
  149. - signs.create.protection
  150. - signs.create.trade
  151. - signs.break.protection
  152. - signs.break.trade
  153. - signs.use.balance
  154. - signs.use.buy
  155. - signs.use.disposal
  156. - signs.use.enchant
  157. - signs.use.free
  158. - signs.use.gamemode
  159. - signs.use.heal
  160. - signs.use.info
  161. - signs.use.kit
  162. - signs.use.mail
  163. - signs.use.protection
  164. - signs.use.repair
  165. - signs.use.sell
  166. - signs.use.time
  167. - signs.use.trade
  168. - signs.use.warp
  169. - signs.use.weather
  170. - spawn
  171. - suicide
  172. - time
  173. - tpa
  174. - tpaccept
  175. - tpahere
  176. - tpdeny
  177. - warp
  178. - warp.list
  179. - world
  180. - worth
  181. - xmpp
  182.  
  183. # Note: All items MUST be followed by a quantity!
  184. # All kit names should be lower case, and will be treated as lower in permissions/costs.
  185. # Syntax: - itemID[:DataValue] Amount [Enchantment:Level]..
  186. # 'delay' refers to the cooldown between how often you can use each kit, measured in seconds.
  187. kits:
  188. starter:
  189. delay: 3600
  190. items:
  191. - 276 1
  192. - 277 1
  193. - 278 1
  194. - 279 1
  195. - 310 1
  196. - 311 1
  197. - 312 1
  198. - 313 1
  199. - 364 64 name: &7Steak and Eggs
  200. citizen:
  201. delay: 86400
  202. items:
  203. - 276 1 name: &7Citizen
  204. - 277 1 name: &7Citizen
  205. - 278 1 name: &7Citizen
  206. - 279 1 name: &7Citizen
  207. - 310 1 name: &7Citizen
  208. - 311 1 name: &7Citizen
  209. - 312 1 name: &7Citizen
  210. - 313 1 name: &7Citizen
  211. - 364 64 name: &7Steak and Eggs
  212. donator:
  213. delay: 86400
  214. items:
  215. - 276 1 sharpness: 1 unbreaking: 1 fireaspect: 1 name: &aDonator
  216. - 277 1 efficiency: 1 unbreaking: 1 name: &aDonator
  217. - 278 1 efficiency: 1 unbreaking: 1 name: &aDonator
  218. - 279 1 efficiency: 1 unbreaking: 1 name: &aDonator
  219. - 310 1 protection: 1 unbreaking: 1 name: &aDonator
  220. - 311 1 protection: 1 unbreaking: 1 name: &aDonator
  221. - 312 1 protection: 1 unbreaking: 1 name: &aDonator
  222. - 313 1 protection: 1 unbreaking: 1 name: &aDonator
  223. - 322:1 1 name: &aDonator
  224. benefactor:
  225. delay: 86400
  226. items:
  227. - 276 1 sharpness: 2 unbreaking: 2 fireaspect: 1 name: &2Benefactor
  228. - 277 1 efficiency: 2 unbreaking: 2 name: &2Benefactor
  229. - 278 1 efficiency: 2 unbreaking: 2 name: &2Benefactor
  230. - 279 1 efficiency: 2 unbreaking: 2 name: &2Benefactor
  231. - 310 1 protection: 2 unbreaking: 2 name: &2Benefactor
  232. - 311 1 protection: 2 unbreaking: 2 name: &2Benefactor
  233. - 312 1 protection: 2 unbreaking: 2 name: &2Benefactor
  234. - 313 1 protection: 2 unbreaking: 2 name: &2Benefactor
  235. - 322:1 3 name: &2Benefactor
  236. hero:
  237. delay: 86400
  238. items:
  239. - 276 1 sharpness: 3 unbreaking: 2 fireaspect: 2 name: &1Hero
  240. - 277 1 efficiency: 3 unbreaking: 2 name: &1Hero
  241. - 278 1 efficiency: 3 unbreaking: 2 name: &1Hero
  242. - 279 1 efficiency: 3 unbreaking: 2 name: &1Hero
  243. - 310 1 protection: 3 unbreaking: 2 name: &1Hero
  244. - 311 1 protection: 3 unbreaking: 2 name: &1Hero
  245. - 312 1 protection: 3 unbreaking: 2 name: &1Hero
  246. - 313 1 protection: 3 unbreaking: 2 name: &1Hero
  247. - 322:1 5 name: &1Hero
  248. god:
  249. delay: 86400
  250. items:
  251. - 276 1 efficiency: 5 unbreaking: 3 fireaspect: 2 name: &cGod lore:&n&4Forged by the Gods
  252. - 277 1 efficiency: 5 unbreaking: 3 name: &cGod lore:&n&4Forged by the Gods
  253. - 278 1 efficiency: 5 unbreaking: 3 name: &cGod lore:&n&4Forged by the Gods
  254. - 279 1 efficiency: 5 unbreaking: 3 name: &cGod lore:&n&4Forged by the Gods
  255. - 310 1 protection: 4 unbreaking: 3 name: &cGod lore:&n&4Forged to protect a God
  256. - 311 1 protection: 4 unbreaking: 3 name: &cGod lore:&n&4Forged to protect a God
  257. - 312 1 protection: 4 unbreaking: 3 name: &cGod lore:&n&4Forged to protect a God
  258. - 313 1 protection: 4 unbreaking: 3 name: &cGod lore:&n&4Forged to protect a God
  259. - 322:1 10 name: &cGod lore:&n&4Grew for the Gods
  260. # Essentials Sign Control
  261. # See http://ess.khhq.net/wiki/Sign_Tutorial for instructions on how to use these.
  262. # To enable signs, remove # symbol. To disable all signs, comment/remove each sign.
  263. # Essentials Colored sign support will be enabled when any sign types are enabled.
  264. # We recommend not enabling chest protection signs if you don't intend to use them, (or are using LWC/Lockette).
  265.  
  266. enabledSigns:
  267. - color
  268. - balance
  269. - buy
  270. - sell
  271. - trade
  272. - free
  273. - disposal
  274. - warp
  275. - kit
  276. - mail
  277. - enchant
  278. - gamemode
  279. - heal
  280. - info
  281. - spawnmob
  282. - repair
  283. - time
  284. - weather
  285. - protection
  286.  
  287.  
  288. # How many times per second can Essentials signs be interacted with.
  289. # Values should be between 1-20, 20 being virtually no lag protection.s
  290. # Lower numbers will reduce the possibility of lag, but may annoy players.
  291. sign-use-per-second: 4
  292.  
  293. # Backup runs a command while saving is disabled
  294. backup:
  295. # Interval in minutes
  296. interval: 30
  297. # Unless you add a valid backup command or script here, this feature will be useless.
  298. # Use 'save-all' to simply force regular world saving without backup.
  299. #command: 'rdiff-backup World1 backups/World1'
  300.  
  301. # Set this true to enable permission per warp.
  302. per-warp-permission: false
  303.  
  304. # Sort output of /list command by groups
  305. sort-list-by-groups: false
  306.  
  307. # More output to the console
  308. debug: false
  309.  
  310. # Set the locale for all messages
  311. # If you don't set this, the default locale of the server will be used.
  312. # Don't forget to remove the # infront of the line
  313. #locale: de_DE
  314.  
  315. # Turn off god mode when people exit
  316. remove-god-on-disconnect: false
  317.  
  318. # Use the permission system of bukkit
  319. # This only works if no other permission plugins are installed
  320. use-bukkit-permissions: false
  321.  
  322. # Auto-AFK
  323. # After this timeout in seconds, the user will be set as afk.
  324. # Set to -1 for no timeout.
  325. auto-afk: 300
  326.  
  327. # Auto-AFK Kick
  328. # After this timeout in seconds, the user will be kicked from the server.
  329. # Set to -1 for no timeout.
  330. auto-afk-kick: -1
  331.  
  332. # Set this to true, if you want to freeze the player, if he is afk.
  333. # Other players or monsters can't push him out of afk mode then.
  334. # This will also enable temporary god mode for the afk player.
  335. # The player has to use the command /afk to leave the afk mode.
  336. freeze-afk-players: false
  337.  
  338. # When the player is afk, should he be able to pickup items?
  339. # Enable this, when you don't want people idling in mob traps.
  340. disable-item-pickup-while-afk: false
  341.  
  342. # Should we automatically remove afk status when the player moves?
  343. # Player will be removed from afk on chat/command reguardless of this setting.
  344. # Disable this to reduce server lag.
  345. cancel-afk-on-move: true
  346.  
  347. # You can disable the death messages of minecraft here
  348. death-messages: true
  349.  
  350. # Add worlds to this list, if you want to automatically disable god mode there
  351. no-god-in-worlds:
  352.  
  353. # Set to true to enable per-world permissions for teleporting between worlds with essentials commands
  354. # This applies to /world, /back, /tp[a|o][here|all], but not warps.
  355. # Give someone permission to teleport to a world with essentials.world.<worldname>
  356. world-teleport-permissions: true
  357.  
  358. # The number of items given if the quantity parameter is left out in /item or /give.
  359. # If this number is below 1, the maximum stack size size is given. If oversized stacks
  360. # is not enabled, any number higher then the maximum stack size results in more than one stack.
  361. default-stack-size: -1
  362.  
  363. # Oversized stacks are stacks that ignore the normal max stacksize.
  364. # They can be obtained using /give and /item, if the player has essentials.oversizedstacks permission.
  365. # How many items should be in an oversized stack?
  366. oversized-stacksize: 64
  367.  
  368. # Do you allow to repair enchanted weapons and armor?
  369. # If you set this to false, you can still allow it for certain players using the permission
  370. # essentials.repair.enchanted
  371. repair-enchanted: true
  372.  
  373. #Do you want essentials to keep track of previous location for /back in the teleport listener?
  374. #If you set this to true any plugin that uses teleport will have the previous location registered.
  375. register-back-in-listener: false
  376.  
  377. #Delay to wait before people can cause attack damage after logging in
  378. login-attack-delay: 5
  379.  
  380. ############################################################
  381. # +------------------------------------------------------+ #
  382. # | EssentialsHome | #
  383. # +------------------------------------------------------+ #
  384. ############################################################
  385.  
  386. # If no home is set, send players to spawn when /home is used
  387. spawn-if-no-home: true
  388.  
  389. # Allows people to set their bed at daytime
  390. update-bed-at-daytime: true
  391.  
  392. # Set to true to enable per-world permissions for using homes to teleport between worlds
  393. # This applies to the /home only.
  394. # Give someone permission to teleport to a world with essentials.world.<worldname>
  395. world-home-permissions: false
  396.  
  397. # Allow players to have multiple homes.
  398. # Players need essentials.sethome.multiple before they can have more than 1 home, default to 'default' below.
  399. # Define different amounts of multiple homes for different permissions, e.g. essentials.sethome.multiple.vip
  400. # People with essentials.sethome.multiple.unlimited are not limited by these numbers.
  401. sethome-multiple:
  402. Citizen: 1
  403. Donator: 2
  404. Benefactor: 3
  405. Hero: 5
  406. God: 8
  407. Staff: 10
  408.  
  409. # Set timeout in seconds for players to accept tpa before request is cancelled.
  410. # Set to 0 for no timeout
  411. tpa-accept-cancellation: 5
  412.  
  413. ############################################################
  414. # +------------------------------------------------------+ #
  415. # | EssentialsEco | #
  416. # +------------------------------------------------------+ #
  417. ############################################################
  418.  
  419. # Defines the balance with which new players begin. Defaults to 0.
  420. starting-balance: 5000
  421.  
  422. # worth-# defines the value of an item when it is sold to the server via /sell.
  423. # These are now defined in worth.yml
  424.  
  425. # Defines the cost to use the given commands PER USE
  426. command-costs:
  427. # /example costs $1000 PER USE
  428. #example: 1000
  429. # /kit tools costs $1500 PER USE
  430. #kit-tools: 1500
  431.  
  432. # Set this to a currency symbol you want to use.
  433. currency-symbol: '$'
  434.  
  435. # Set the maximum amount of money a player can have
  436. # The amount is always limited to 10 trillions because of the limitations of a java double
  437. max-money: 10000000000000
  438.  
  439. # Set the minimum amount of money a player can have (must be above the negative of max-money).
  440. # Setting this to 0, will disable overdrafts/loans completely. Users need 'essentials.eco.loan' perm to go below 0.
  441. min-money: -10000
  442.  
  443. # Enable this to log all interactions with trade/buy/sell signs and sell command
  444. economy-log-enabled: false
  445.  
  446. ############################################################
  447. # +------------------------------------------------------+ #
  448. # | EssentialsHelp | #
  449. # +------------------------------------------------------+ #
  450. ############################################################
  451.  
  452. # Show other plugins commands in help
  453. non-ess-in-help: true
  454.  
  455. # Hide plugins which do not give a permission
  456. # You can override a true value here for a single plugin by adding a permission to a user/group.
  457. # The individual permission is: essentials.help.<plugin>, anyone with essentials.* or '*' will see all help this setting reguardless.
  458. # You can use negitive permissions to remove access to just a single plugins help if the following is enabled.
  459. hide-permissionless-help: true
  460.  
  461. ############################################################
  462. # +------------------------------------------------------+ #
  463. # | EssentialsChat | #
  464. # +------------------------------------------------------+ #
  465. ############################################################
  466.  
  467. chat:
  468.  
  469. # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks. Set to 0 to make all chat global.
  470. # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  471. # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  472. # Or with essentials.chat.question can override this by prefixing text with a question mark (?)
  473. # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  474. radius: 0
  475.  
  476. # Chat formatting can be done in two ways, you can either define a standard format for all chat
  477. # Or you can give a group specific chat format, to give some extra variation.
  478. # If set to the default chat format which "should" be compatible with ichat.
  479. # For more information of chat formatting, check out the wiki: http://ess.khhq.net/wiki/Chat_Formatting
  480.  
  481. format: '<{DISPLAYNAME}> {MESSAGE}'
  482. #format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'
  483.  
  484. group-formats:
  485. # Default: '{WORLDNAME} {DISPLAYNAME}&7:&f {MESSAGE}'
  486. # Admins: '{WORLDNAME} &c[{GROUP}]&f {DISPLAYNAME}&7:&c {MESSAGE}'
  487.  
  488. # If you are using group formats make sure to remove the '#' to allow the setting to be read.
  489.  
  490. ############################################################
  491. # +------------------------------------------------------+ #
  492. # | EssentialsProtect | #
  493. # +------------------------------------------------------+ #
  494. ############################################################
  495.  
  496. protect:
  497. # Database settings for sign/rail protection
  498.  
  499. # mysql or sqlite
  500. # We strongly recommend against using mysql here, unless you have a good reason.
  501. # Sqlite seems to be faster in almost all cases, and in some cases mysql can be much slower.
  502. datatype: 'sqlite'
  503.  
  504. # If you specified MySQL above, you MUST enter the appropriate details here.
  505. # If you specified SQLite above, these will be IGNORED.
  506. username: 'root'
  507. password: 'root'
  508. mysqlDb: 'jdbc:mysql://localhost:3306/minecraft'
  509.  
  510. # For which block types would you like to be alerted?
  511. # You can find a list of IDs in plugins/Essentials/items.csv after loading Essentials for the first time.
  512. # 10 = lava :: 11 = still lava :: 46 = TNT :: 327 = lava bucket
  513. alert:
  514. on-placement: 10,11,46,327
  515. on-use: 327
  516. on-break:
  517.  
  518. blacklist:
  519.  
  520. # Which blocks should people be prevented from placing
  521. placement: 10,11,46,327
  522.  
  523. # Which items should people be prevented from using
  524. usage: 327
  525.  
  526. # Which blocks should people be prevented from breaking
  527. break:
  528.  
  529. # Which blocks should not be pushed by pistons
  530. piston:
  531.  
  532. # General physics/behavior modifications
  533. prevent:
  534. lava-flow: false
  535. water-flow: false
  536. water-bucket-flow: false
  537. fire-spread: true
  538. lava-fire-spread: true
  539. flint-fire: false
  540. lightning-fire-spread: true
  541. portal-creation: false
  542. tnt-explosion: true
  543. tnt-playerdamage: true
  544. fireball-explosion: false
  545. fireball-fire: false
  546. fireball-playerdamage: false
  547. creeper-explosion: false
  548. creeper-playerdamage: false
  549. creeper-blockdamage: true
  550. enderdragon-blockdamage: true
  551. enderman-pickup: false
  552. villager-death: false
  553. # Monsters won't follow players
  554. # permission essentials.protect.entitytarget.bypass disables this
  555. entitytarget: false
  556. # Prevent the spawning of creatures
  557. spawn:
  558. creeper: false
  559. skeleton: false
  560. spider: false
  561. giant: false
  562. zombie: false
  563. slime: false
  564. ghast: false
  565. pig_zombie: false
  566. enderman: false
  567. cave_spider: false
  568. silverfish: false
  569. blaze: false
  570. magma_cube: false
  571. ender_dragon: false
  572. pig: false
  573. sheep: false
  574. cow: false
  575. chicken: false
  576. squid: false
  577. wolf: false
  578. mushroom_cow: false
  579. snowman: false
  580. ocelot: false
  581. iron_golem: false
  582. villager: false
  583.  
  584. # Maximum height the creeper should explode. -1 allows them to explode everywhere.
  585. # Set prevent.creeper-explosion to true, if you want to disable creeper explosions.
  586. creeper:
  587. max-height: -1
  588.  
  589. # Protect various blocks.
  590. protect:
  591. # Protect all signs
  592. signs: true
  593.  
  594. # Prevent users from destroying rails
  595. rails: true
  596.  
  597. # Blocks below rails/signs are also protected if the respective rail/sign is protected.
  598. # This makes it more difficult to circumvent protection, and should be enabled.
  599. # This only has an effect if "rails" or "signs" is also enabled.
  600. block-below: true
  601.  
  602. # Prevent placing blocks above protected rails, this is to stop a potential griefing
  603. prevent-block-on-rails: false
  604.  
  605. # Store blocks / signs in memory before writing
  606. memstore: false
  607.  
  608. # Disable various default physics and behaviors
  609. disable:
  610. # Should fall damage be disabled?
  611. fall: false
  612.  
  613. # Users with the essentials.protect.pvp permission will still be able to attack each other if this is set to true.
  614. # They will be unable to attack users without that same permission node.
  615. pvp: false
  616.  
  617. # Should drowning damage be disabled?
  618. # (Split into two behaviors; generally, you want both set to the same value)
  619. drown: false
  620. suffocate: false
  621.  
  622. # Should damage via lava be disabled? Items that fall into lava will still burn to a crisp. ;)
  623. lavadmg: false
  624.  
  625. # Should arrow damage be disabled
  626. projectiles: false
  627.  
  628. # This will disable damage from touching cacti.
  629. contactdmg: false
  630.  
  631. # Burn, baby, burn! Should fire damage be disabled?
  632. firedmg: false
  633.  
  634. # Should the damage after hit by a lightning be disabled?
  635. lightning: false
  636.  
  637. # Should people with build: false in permissions be allowed to build
  638. # Set true to disable building for those people
  639. build: true
  640.  
  641. # Should people with build: false in permissions be allowed to use items
  642. # Set true to disable using for those people
  643. use: true
  644.  
  645. # Should we tell people they are not allowed to build
  646. warn-on-build-disallow: true
  647.  
  648. # Disable weather options
  649. weather:
  650. storm: false
  651. thunder: false
  652. lightning: false
  653.  
  654. ############################################################
  655. # +------------------------------------------------------+ #
  656. # | Essentials Spawn / New Players | #
  657. # +------------------------------------------------------+ #
  658. ############################################################
  659.  
  660. newbies:
  661. # Should we announce to the server when someone logs in for the first time?
  662. # If so, use this format, replacing {DISPLAYNAME} with the player name.
  663. # If not, set to ''
  664. #announce-format: ''
  665. announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
  666.  
  667. # When we spawn for the first time, which spawnpoint do we use?
  668. # Set to "none" if you want to use the spawn point of the world.
  669. spawnpoint: newbies
  670.  
  671. # Do we want to give users anything on first join? Set to '' to disable
  672. # This kit will be given regardless of cost, and permissions.
  673. #kit: ''
  674. kit: Starter
  675.  
  676. # Set this to lowest, if you want Multiverse to handle the respawning
  677. # Set this to high, if you want EssentialsSpawn to handle the respawning
  678. # Set this to highest, if you want to force EssentialsSpawn to handle the respawning
  679. respawn-listener-priority: high
  680.  
  681. # When users die, should they respawn at their first home or bed, instead of the spawnpoint?
  682. respawn-at-home: false
  683.  
  684. # End of File <-- No seriously, you're done with configuration.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement