> For the complete documentation index, see [llms.txt](https://vortexbey.gitbook.io/untitled/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vortexbey.gitbook.io/untitled/assets-and-guides/advanced-sound-control-panel/configuration.md).

# Configuration

All settings are located in:

```
config.json
```

Below you will find a full explanation of each configuration option.

### **Command**

This defines the chat command used to open the Sound Panel.

```json
"Command": "soundpanel"
```

You may change this to anything you prefer:

```json
"Command": "soundadmin"
```

Users will then open the panel with:

```
/soundadmin
```

### **Authorized**

This section defines which players are allowed to open the panel.

Supported identifier types:

* license:
* fivem:
* steam:
* discord:

Example:

```json
"Authorized": [
    "license:123456789abcdef",
    "discord:990000000000000000"
]
```

> ⚠️ Important:\
> Players NOT listed here **cannot** open the panel.

### **Locale**

Select the language for the UI and Discord logs.

Example:

```json
"Locale": "en"
```

Supported languages include:

```
en, tr, de, fr, es, ru, ar, pt, pt_br, nl, pl, cs, sv, ja, zh, ko, hi ...
```

You may add custom languages inside:

```
locales/*.lua
```

### **Discord Webhook**

To enable logging, paste your Discord webhook URL:

```json
"Webhook": "https://discord.com/api/webhooks/XXXX"
```

If left empty, Discord logging is disabled:

```json
"Webhook": ""
```

Logs include:

* Panel opened
* Global sound playback
* Self playback
* Targeted playback


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://vortexbey.gitbook.io/untitled/assets-and-guides/advanced-sound-control-panel/configuration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
