Config items

we will take the examples from this config

items:
- "myitems:red_sand"
myitemsred_sand:
  whitelist: true
  can-float: true
  water-collision: true
  blocks:
  - GRASS_BLOCK
Item
Description
Example

messages:

you can manage messages that get sent by the plugin

None

items:

this is where you initialize your item(s)

items: - myitems:red_sand

namespaceid:

this is where you configure the properties of the item

myitemsred_sand:

whitelist:

where you specify whether you want the blocks under blocks: to be whitelist or blacklist

whitelist: true whitelist: false

blocks:

this is where you set which blocks you want to whitelist/blacklist

blocks: - GRASS_BLOCK

can-float:

this is if the block below is broken do you want it to break or float

can-float: true can-float: false

water-collision:

this is if the block come in contact do you want it to break

water-collision: true water-collision: false

custom-blocks:

similar to blocks: but you can add other itemsadder blocks to place on

custom-blocks: - "myitems:red_sand"

dropped-items:

this will override the normal dropping of the item and will drop the items listed with a % or just the items in the list This can use other itemsadder items or normal items

dropped-items: - "myitems:red_sand" or dropped-items: - "myitems:red_sand" 25%

Last updated