> For the complete documentation index, see [llms.txt](https://docs.zithium.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.zithium.net/zithium-series/zithiummobcoins/menu-options.md).

# Menu Options

## Glowing Items:

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

```yaml
glow: true
```

Example:

```yaml
  '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.

```yaml
bulk_buy: false
```

Example:

```yaml
  '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"
```
