# Sell Features

There are multiple ways for players to quickly sell their items into Virtual Shops.

## Sell Containers

A feature that allows to sell items **inside shulker boxes** (and any other "containers", including chests) when using any of the Sell Features below.

!!!warning
Items inside **bundles** are **not supported**.
!!!

You can toggle the feature in the `settings.yml` under the `SellFeatures` -> `Containers` section:
```yaml
Containers:
  ContentIncluded: true
```

## Sell GUI

A feature that provides a simple GUI, where players put items they want to sell.

By default, it's assigned to the `/sellgui` command.

You can toggle and customize the feature in the `settings.yml` under the `Sell_Menu` section:
```yaml
Sell_Menu:
  Enabled: true
  Simplified: true
  Commands: sellgui,sellmenu
```

GUI configuration located in the `/virtual_shop/sell.menu.yml`.

!!!warning
If the `Simplified` setting is enabled, the GUI will have no items defined in the `Content` section.
!!!

## Sell All

A feature that allows players to quickly sell all items in their inventory with a single command.

By default, it's assigned to the `/sellall` command.

You can toggle and customize the feature in the `settings.yml` under the `Sell_All` section:
```yaml
Sell_All:
  Enabled: true
  Commands: sellall
```

## Sell Hand

A feature that allows players to quickly sell item in their hand.

By default, it's assigned to the `/sellhand` command.

You can toggle and customize the feature in the `settings.yml` under the `Sell_Hand` section:
```yaml
Sell_Hand:
  Enabled: true
  Commands: sellhand
```

## Sell Hand All

A feature that allows players to quickly sell all items in their inventory that are similar to the item in their hand.

By default, it's assigned to the `/sellhandall` command.

You can toggle and customize the feature in the `settings.yml` under the `Sell_Hand_All` section:
```yaml
Sell_Hand_All:
  Enabled: true
  Commands: sellhandall
```
