Menu Options

Here you can find some examples for various options you can use in the menus to make them look good.

Glowing Items:

To make an item glow just simply add the following line to the item.

glow: true

Example:

  '1':
    material: EMERALD
    display_name: "&a$5,000"
    glow: true
    lore:
      - ""
      - "&6Price: &f{COST} Coins"
      - ""
      - "&eLeft-Click for bulk buy"
      - "&eRight-Click for 1x item."
    cost: 25000
    commands:
      - "eco give {PLAYER} 5000"

Disabling Bulk Purchases

To disable the bulk buy menu for an item simply add the following line to the item.

bulk_buy: false

Example:

  '1':
    material: EMERALD
    display_name: "&a$5,000"
    glow: true
    bulk_buy: false
    lore:
      - ""
      - "&6Price: &f{COST} Coins"
      - ""
      - "&eLeft-Click for bulk buy"
      - "&eRight-Click for 1x item."
    cost: 25000
    commands:
      - "eco give {PLAYER} 5000"