Config

Config file structure

  • paint
    • consumeMode - Which mode of consumption should dyes follow? See "Consumption modes", below, for more details.
    • unitsPerDye - How much paint is a single dye actually worth? Units are defined on the same scale among all nodes in this section.
    • wool, carpet, glass, clay, glasspane - How much paint does each block consume when painted? Units are defined on the same scale among all nodes in this section. An individual value must be an integer between
  • water
    • consumeMode - Which mode of consumption should water bottles follow? See "Consumption modes", below, for more details.
    • unitsPerDye - How much water is a single bottle actually worth? Units are defined on the same scale among all nodes in this section.
    • glass, clay, glasspane - How much water does each block consume when washed? Units are defined on the same scale among all nodes in this section.

Consumption modes

  • UNITS - Uses the units system. A dye or bottle item is consumed when the first units of paint or water are used, but additional dyes/bottles are not consumed until you run out of units and consume more. It will result in players usually needing one dye/bottle extra that isn't consumed, and remaining units of paint/water are lost on a server reload/restart.
  • POST - Uses the units system. A dye or bottle item is not consumed until your last units of paint/water are used. However, the dyes/bottles are still freely usable outside the plugin, though the system will remember what you've used and take away an item when you've consumed a full item's worth of units. If the server is reloaded/restarted, the number of units used will be forgotten.
  • WHOLE - Ignores the units system entirely. A whole dye or bottle is consumed for each individual block painted or washed.
  • NONE - Ignores the units system entirely. There is no consumption whatsoever of either dyes or bottles (whichever has this value).

Defaults

The default config is, in its entirety, as follows. These values are so selected as to replicate the exact material-efficiency of the vanilla crafting recipes.

paint:
  consumeMode: UNITS
  unitsPerDye: 192
  wool: 192
  carpet: 128
  glass: 24
  clay: 24
  glasspane: 9
water:
  consumeMode: UNITS
  unitsPerBottle: 64
  glass: 8
  clay: 8
  glasspane: 3

Comments

Posts Quoted:
Reply
Clear All Quotes