Advertisement
maxthelinkfan

Untitled

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