# MythosMarket v2.4 — Commands Reference
## Player Commands
| Command | Description |
|---------|-------------|
|
/shop | Open the shop GUI (buy items) ||
/sell | Open the sell GUI (sell items) |---
## Admin Commands
### Shop — buying
| Command | Description |
|---------|-------------|
|
/mm create category <name> | Create a category in the shop ||
/mm delete category <name> | Delete a category from the shop ||
/mm add <category> <id> <price> | Add held item to the shop ||
/mm remove <category> <id> <price> | Remove an item from the shop |### Sell — selling
| Command | Description |
|---------|-------------|
|
/mm sellcreate category <name> | Create a category in the sell shop ||
/mm selldelete category <name> | Delete a category from the sell shop ||
/mm selladd <category> <id> <price> | Add held item to the sell shop ||
/mm sellremove <category> <id> <price> | Remove an item from the sell shop |### Balance
| Command | Description |
|---------|-------------|
|
/mm balance <player> | Check a player's balance ||
/mm balance <player> add <amount> | Add money to a player ||
/mm balance <player> set <amount> | Set a player's balance |### Other
| Command | Description |
|---------|-------------|
|
/mm reload | Reload configs without restarting the server |---
## Usage Examples
### Setting up the shop
Code:
1. /mm create category Weapons
2. Hold a sword in your hand
3. /mm add Weapons 1 500
4. Players can now buy it via /shop
### Setting up the sell shop
Code:
1. /mm sellcreate category Resources
2. Hold iron ingot in your hand
3. /mm selladd Resources 1 10
4. Players can now sell iron ingots for 10 coins via /sell
### Managing player balance
Code:
/mm balance Steve
/mm balance Steve add 1000
/mm balance Steve set 500
