Configuration

Configuration

Entire Config

enabled: true
craft-manipulation:
  DIAMOND_SWORD:
    name: '&1%p''s sword'
    amount: 1
    lore:
    - '&6Diamond Sword!'
    type: DIAMOND_SWORD

Explanation

enabled: true

This enables/disables the plugin, you can put 'false' if you want it to be disabled.

craft-manipulation:
  DIAMOND_SWORD:
    name: '&1%p''s sword'
    amount: 1
    lore:
    - '&6Diamond Sword!'
    type: DIAMOND_SWORD

You can add the crafting outputs here.

DIAMOND_SWORD:

This is the item's recipe you want to change.

name: '&1%p''s sword'

This is the item's display name.

amount: 1

This is the amount of items you want to be in the output.

  lore:
    - '&6Diamond Sword!'

This is the item's lore (description), you can add something to the description like this:

  lore:
    - '&6Diamond Sword!'
    - '&6Extremely Powerfull!!'
  type: DIAMOND_SWORD

This is the type of the output, you can change this for example to: IRON_BLOCK. You can find a list of all types here.

NOTES:

  • &6 is a color. You can find a list of all colors here.
  • You can use %p to represent the player's name.