# Configuration

## Framework <a href="#framework" id="framework"></a>

Select the framework you are using on your server.

```lua
Config.Framework = 'auto' -- 'esx'/'qb'/'auto'
```

## Distance <a href="#framework" id="framework"></a>

Edit distance for Me and Do

```lua
Config.Distance = 10.0
```

## CommandMe and CommandDo <a href="#framework" id="framework"></a>

Edit command for Me and Do

```lua
Config.CommandMe = "me"
Config.CommandDo = "do"
```

## Show Update <a href="#framework" id="framework"></a>

Show updates in console?

```lua
Config.Update = true -- show in console the updates ?
```

## Show <a href="#framework" id="framework"></a>

Show information?

```lua
Config.Show = {
    Name = true,    -- show name ic?
    Avatar = true, -- show profile?
    botToken = "...", -- Bot token for discord
    defaultImg = "https://gifdb.com/images/high/profile-pic-hotaro-oreki-blowing-coffee-n2a36sbz31j0to8t.gif"--url of img or gif
}
```

## Style <a href="#framework" id="framework"></a>

Here you can change the style of each one, to match the colors of your server!

```lua
Config.Style = {
    ['Me'] = {
        BgName = "#000000",
        ColorName = "#acafad",
        BgTag = "#000000",
        ColorTag = "#acafad",
        Color = "#37393e",
        BgCard = "linear-gradient(145deg, #acafad 0%, #000000 100%)",
    },
    ['Do'] = {
        BgName = "#000000",
        ColorName = "#acafad",
        BgTag = "#000000",
        ColorTag = "#acafad",
        Color = "#37393e",
        BgCard = "linear-gradient(145deg, #acafad 0%, #000000 100%)",
    }
}
```


---

# 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://guxfiz.gitbook.io/docs/resources/gx_medo/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.
