# Admin Panel

Open the admin panel in-game with the command configured in `Config.AdminPanel.command` (default: `/charpanel`).

#### Admin Features

| Feature            | Description                                                      |
| ------------------ | ---------------------------------------------------------------- |
| Generate Slot Code | Creates a one-time-use code players can redeem for an extra slot |
| View Active Codes  | Lists all unredeemed slot codes with creation timestamps         |
| Set Player Slots   | Override the number of slots for a specific player               |
| Disable Character  | Hides a character from selection without deleting it             |
| Delete Character   | Permanently removes a character and all associated data          |
| Change Theme       | Sets the active UI colour theme for all players                  |
| Search Players     | Find any player or character on the server                       |

#### Permission Groups

Edit `Config.AdminPanel.permission` to control which groups can access the panel:

```lua
Config.AdminPanel.permission = {
    admin  = true,
    mod    = true,
    helper = false,   -- helpers cannot access the panel
}
```


---

# Agent Instructions: 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:

```
GET https://docs.arius-scripts.com/site/documentation/resources/multicharacter/configuration/admin-panel.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
