Configuration overview

Default configs

Each world will have it's own section in the config.

config.yml:

Here you set up the teams.
If you list a team that dosn't already exciting in the minecraft scoreboard, the plugin will create it.
You can set the teams color by adding a ":" and one of the following colors after the team name.

All the legal colors are:
black, dark_gray, gray, dark_blue, blue, dark_green, green, dark_aqua, aqua, dark_red, red, dark_purple, light_purple, gold, yellow, white (it will be white :P).

Important : The plugin will NOT allow you to use the same team in more that ONE world. All teams are linked to one world.

You can leave the team node empty, if you don't wish to have any teams.

  teams:
  - TeamName:TeamColor
  - RED:red
  - BLU                           // This team has no color
  - GREEN:Gray

This disables friendly fire, both with weapons and arrows. But also with splash potions.

disableTeamPvP: true

This enables cool downs on splash potions usage. This will force players to wait a certain time before they can use a certain potion again.
The cool down times can be set in the potion.yml

splashPotionCooldown: true

Enabling infinite item durability will automatically replace items as they break.
Infinite items is a list of items the the player automatically gets a stack of 64 when they right click with that item and only have one left. If you leave the list empty infinite items will be completely disabled.

infinite:
  itemDurability: true
  items:
  - 373
  - 260

This will stop players from dropping items out of their inventories.

disableItemDrops: true

Here you can enabled or disable location reset (yes really!!).
The time is how long a player must be logged out before their location will be reset.
Legal time units are: s = seconds, m = minutes, h = hours. d = days

locationReset:
  enabled: true
  time: 2m

Here you enable or disable block break protection. You list what blocks should be allowed or denied breaking in the blocks.yml. Disabling crop trampling will stop players from destroying crops by jumping on them.

worldProtection:
  limitBlockBreaking: true
  disableCropTrampling: true

This is used to keep track of auto config updating inside the plugin. DO NOT MODIFY THIS VALUE

configVersion: 0.5.0

More info about the features.



potion.yml:

In the potion.yml you can set cool down times for different splash potions. You put the splash potion damage values on the left and a cool down time on the right.
All potions that match the properties of that damage value will get affected by the cool down time.

cooldownTimes:
  '16392': 1m
  '16396': '2500' (//This gets read as milliseconds. 2500 = 2.5 seconds //) 
  '16428': 12s
  '16417': 1s

This is used to keep track of auto config updating inside the plugin. DO NOT MODIFY THIS VALUE

configVersion: 0.5.0


blocks.yml:

Here you can list what blocks should be protected. Make sure limitBlockBreaking is enabled in the config.yml.
Under allow you list the blocks the the player should be able to break. You can replace allow with deny if you want to list the blocks the player should not be able to break instead.
If you want all block breaking to be disabled just only put 0 (air) in the allow list.

Players are only allowed to break, Leaves (18), torches(50) and tall grass(31) by default.

blockBreaking:
  allow:
  - 50
  - 31
  - 18

This is used to keep track of auto config updating inside the plugin. DO NOT MODIFY THIS VALUE

configVersion: 0.5.0

Comments

Posts Quoted:
Reply
Clear All Quotes