# Configuration

### Image Settings

```lua
ImageSettings = {
    status = true, -- if you set it to false, players will not be able to share images.
    allowedURLs = { -- you need to enter the urls that players can use when sharing images
        "https://r2.fivemanage.com/",
        "https://media.discordapp.net/attachments/",
        "https://cdn.discordapp.com/attachments/",
    },
},
```

### Music Settings

<pre class="language-lua"><code class="lang-lua">MusicSettings = {
<strong>    status = true, -- if you set it to false, players will not be able to play music
</strong>    defaultVolume = 0.5, -- volume as standard when turned on with the song
},
</code></pre>

### Themes

```lua
Themes = { -- The foremost thema is always shown as the default theme
    { name = "grids", label = "Grids", defaultTheme = { hex = "#000", text = '#fff', box = '#0000007d', from = 'rgba(0, 0, 0, .35)', to = 'rgba(0, 0, 0, 0)' } },
    { name = "velmor", label = "Velmor", defaultTheme = { hex = "#FFFFFF", text = '#000', box = '#ffffff29', from = 'rgba(255, 255, 255, .35)', to = 'rgba(255, 255, 255, 0)' } },
    { name = "velmor-v2", label = "Velmor V2", defaultTheme = { hex = "#000", text = '#fff', box = '#0000007d', from = 'rgba(0, 0, 0, .35)', to = 'rgba(0, 0, 0, 0)' } },
    { name = "modern", label = "Modern", defaultTheme = { hex = "#17181c", text = '#fff', box = '#17181cad', from = 'rgba(23, 24, 28, .35)', to = 'rgba(23, 24, 28, 0)' } },
    { name = "res", label = "Res", defaultTheme = { hex = "#000", text = '#fff', box = '#0000007d', from = 'rgba(0, 0, 0, .35)', to = 'rgba(0, 0, 0, 0)' } },
    { name = "samp", label = "SAMP", defaultTheme = { hex = "#000", text = '#fff', box = '#0000007d', from = 'rgba(0, 0, 0, .35)', to = 'rgba(0, 0, 0, 0)' } },
},
```

### Mask Settings

```lua
AnonymousWithMask = true, -- if you set it to false, players will be shown with their first and last name when wearing a mask
```


---

# 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.0resmon.org/0resmon/0r-resources/0r-chat-v3/configuration.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.
