Item Builders

Builder Explained

Setting
Type
Description

slot

Number

The slot in the inventory.

trigger

Text

commands

Text List

name

Text

The display name of the item.

lore

Text List

The lore (or description) of the item.

type

Material

The type of the item.

amount

Number

The amount of the item.

model

Number

The custom model data value.

glow

True/False

Whether the item should glow or not.

head

Text

Here's an example of a builder that opens the Alerts menu when being clicked on:

alerts-visibility:
  item-settings:
    slot: 52
    trigger: OPEN_ALERTS
    commands:
  meta-builder:
    name: "&b🛠 Alerts"
    lore:
      - ""
      - "&7Change alerts settings."
      - ""
      - "&b🛠 &7This menu is only visible"
      - "&7to server administrators."
      - ""
      - "&eClick to open!"
    type: BELL
    amount: 1
    model: 0
    glow: false
    head: ""

Last updated