Items

This page outlines how to configure items in the GUI.

In this section of the wiki, we'll explain how the item: config option works. This should be the same with each config file that has this option, and is responsible for how the item in the GUI will look.

  • material determines which block or item will be displayed in the GUI, please use Material IDs from this site.

  • amount determines the amount of said material that will be displayed in the GUI. You may use any positive integer.

  • displayName determines the name of the item in the GUI.

  • headData will determine the player head's data. You can get these using sites like this (This will be ignored if PLAYER_HEAD is not the material that is used.)

  • headOwner will determine the player head's owner. (This will be ignored if PLAYER_HEAD is not the material that is used, or if headData is not null.)

  • lore is a list of string that will determine the item's lore,

    • slot determines where the item will be placed in the GUI. Possible values are in this image. Because of how the rewards GUI is handled.

Examples

Grass Block:

    item:
      material: "GRASS_BLOCK"
      amount: 1
      displayName: "&9&lBlocks"
      headData: null
      headOwner: null
      lore: 
      - "Blocks!"
      - ""
      - "&aExample Lore"
      slot: 12

Player Head using headOwner with an empty lore:

3 Player Heads using headData:

Last updated

Was this helpful?