# Settings

<div align="left"><figure><img src="https://3370059127-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FSyiKILXmwnBdMbh66tQn%2Fuploads%2Ft09lg9ZgDQKIEJiKdvMP%2F6e1638392de4d052be1a881cc9e179e9.png?alt=media&#x26;token=ea82b567-5efe-4d7b-aa86-c67a594bbddf" alt="" width="18"><figcaption></figcaption></figure></div>

Puede añadir más colores para el texto en el config y también podrá añadir más teclas en el mismo, al igual que puede hacer que las teclas se vean en la caja o sea un icono de Font Awesome.

<div align="left"><figure><img src="https://3370059127-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FSyiKILXmwnBdMbh66tQn%2Fuploads%2FHy2HzMTy2vnjfGKMCDGz%2F6e1638392de4d052be1a881cc9e179e9.png?alt=media&#x26;token=322c750b-7499-44e0-8167-8fad38d7d021" alt="" width="18"><figcaption></figcaption></figure></div>

You can add more colors for the text in the config and you can also add more keys in the same, as well as you can make the keys visible in the box or be a Font Awesome icon.

{% code title="config.lua" overflow="wrap" lineNumbers="true" %}

```lua
COLOR_CODES = { -- Color codes and they can be customized.
    ['~r~'] = '<span style="color: #ff0000;">',
    ['~g~'] = '<span style="color: #1bff00;">',
    ['~b~'] = '<span style="color: #000cff;">',
    ['~y~'] = '<span style="color: #ecff00;">',
    ['~p~'] = '<span style="color: #6400ff;">',
    ['~c~'] = '<span style="color: #7c7c7c;">',
    ['~m~'] = '<span style="color: #464646;">',
    ['~u~'] = '<span style="color: #000000;">',
    ['~o~'] = '<span style="color: #ff6c00;">',
    ['~w~'] = '<span style="color: #ffffff;">',
    ['~s~'] = '</span>'
}

KEY_LABELS = { -- All the keys that can be used and you can add more.
    ['INPUT_NEXT_CAMERA'] = {
        label = 'V',
        box = true,
    },
    ['INPUT_LOOK_LR'] = {
        label = 'MOUSE RIGHT',
        box = true,
    },
    ['INPUT_LOOK_UD'] = {
        label = 'MOUSE DOWN',
        box = true,
    },
    ['INPUT_CINEMATIC_SLOWMO'] = {
        label = '(NONE)',
        box = true,
    },
    ['INPUT_SCRIPTED_FLY_UD'] = {
        label = 'S',
        box = true,
    },
    ['INPUT_SCRIPTED_FLY_LR'] =  {
        label = 'D',
        box = true,
    },
    ['INPUT_SCRIPTED_FLY_ZUP'] = {
        label = 'AV PAG',
    },
    ['INPUT_SCRIPTED_FLY_ZDOWN'] = {
        label = 'RE PAG',
    },
    ['INPUT_WEAPON_WHEEL_UD'] = {
        label = 'MOUSE DOWN',
        box = true,
    },
    ['INPUT_WEAPON_WHEEL_LR'] = {
        label = 'MOUSE RIGHT',
        box = true,
    },
    ['INPUT_WEAPON_WHELL_NEXT'] = {
        label = 'SCROLL DOWN',
        box = true,
    },
    ['INPUT_WEAPON_WHEEL_PREV'] = {
        label = 'SCROLL UP',
        box = true,
    },
    ['INPUT_SELECT_NEXT_WEAPON'] = {
        label = 'SCROLL DOWN',
        box = true,
    },
    ['INPUT_SELECT_PREV_WEAPON'] = {
        label = 'SCROLL UP',
        box = true,
    },
    ['INPUT_SKIP_CUTSCENE'] = {
        icon = '<i class="fa-solid fa-turn-down-left"></i>'
    },
    ['INPUT_CHARACTER_WHEEL'] = {
        label = 'ALT IZQ',
        box = true,
    },
    ['INPUT_MULTIPLAYER_INFO'] = {
        label = 'Z',
        box = true,
    },
    ['INPUT_SPRINT'] = {
        icon = '<i class="fa-solid fa-up"></i>'
    },
    ['INPUT_FRONTEND_ENDSCREEN_ACCEPT'] = {
        icon = '<i class="fa-solid fa-arrow-turn-down-left"></i>'
    },
    ['INPUT_FRONTEND_RIGHT'] = {
        icon = '<i class="fa-solid fa-arrow-left-long"></i>'
    },
    ['INPUT_CELLPHONE_UP'] = {
        icon = '<i class="fa-solid fa-arrow-up"></i>'
    },
    ['INPUT_CELLPHONE_DOWN'] = {
        icon = '<i class="fa-solid fa-arrow-down"></i>'
    },
    ['INPUT_JUMP'] = {
        label = 'SPACE',
        box = true,
    },
    ['INPUT_ENTER'] = {
        label = 'F',
        box = true
    },
    ['INPUT_ATTACK'] = {
        label = 'MOUSE LEFT',
        box = true,
    },
    ['INPUT_AIM'] = {
        label = 'MOUSE RIGHT',
        box = true,
    },
    ['INPUT_LOOK_BEHIND'] = {
        label = 'C',
        box = true,
    },
    ['INPUT_PHONE'] = {
        icon = '<i class="fa-solid fa-up"></i>'
    },
    ['INPUT_SPECIAL_ABILITY'] = {
        label = '(NONE)'
    },
    ['INPUT_SPECIAL_ABILITY_SECONDARY'] = {
        label = 'B',
        box = true,
    },
    ['INPUT_MOVE_LR'] = {
        label = 'D',
        box = true,
    },
    ['INPUT_MOVE_UD'] = {
        label = 'S',
        box = true
    },
    ['INPUT_MOVE_UP_ONLY'] = {
        label = 'W',
        box = true,
    },
    ['INPUT_MOVE_DOWN_ONLY'] = {
        label = 'S',
        box = true,
    },
    ['INPUT_MOVE_LEFT_ONLY'] = {
        label = 'A',
        box = true,
    },
    ['INPUT_MOVE_RIGHT_ONLY'] = {
        label = 'D',
        box = true,
    },
    ['INPUT_DUCK'] = {
        label = 'CTRL IZQ',
        box = true,
    },
    ['INPUT_SELECT_WEAPON'] = {
        label = 'TAB',
        box = true,
    },
    ['INPUT_PICKUP'] = {
        label = 'E',
        box = true,
    },
    ['INPUT_SNIPER_ZOOM'] = {
        label = '[',
        box = true
    },
    ['INPUT_SNIPER_ZOOM_IN_ONLY'] = {
        label = ']',
        box = true,
    },
    ['INPUT_SNIPER_ZOOM_OUT_ONLY'] = {
        label = '[',
        box = true,
    },
    ['INPUT_SNIPER_ZOOM_IN_SECONDARY'] = {
        label = ']',
        box = true
    },
    ['INPUT_SNIPER_ZOOM_OUT_SECONDARY'] = {
        label = '[',
        box = true,
    },
    ['INPUT_COVER'] = {
        label = 'Q',
        box = true,
    },
    ['INPUT_RELOAD'] = {
        label = 'R',
        box = true
    },
    ['INPUT_TALK'] = {
        label = 'E',
        box = true
    },
    ['INPUT_DETONATE'] = {
        label = 'G',
        box = true,
    },
    ['INPUT_MP_TEXT_CHAT_TEAM'] = {
        label = 'Y',
        box = true,
    },
    ['INPUT_VEH_DUCK'] = {
        label = 'X',
        box = true,
    },
    ['INPUT_HUD_SPECIAL'] = {
        label = 'Z',
        box = true,
    },
    ['INPUT_ARREST'] = {
        label = 'F',
        box = true,
    },
    ['INPUT_ACCURATE_AIM'] = {
        label = 'SCROLL DOWN',
        box = true,
    },
    ['INPUT_CONTEXT'] = {
        label = 'E',
        box = true,
    },
    ['INPUT_CONTEXT_SECONDARY'] = {
        label = 'Q',
        box = true,
    },
    ['INPUT_WEAPON_SPECIAL'] = {
        label = '(NONE)',
        box = true,
    },
    ['INPUT_WEAPON_SPECIAL_TWO'] = {
        label = 'E',
        box = true,
    },
    ['INPUT_DIVE'] = {
        label = 'SPACEBAR',
        box = true,
    },
    ['INPUT_DROP_WEAPON'] = {
        label = 'F9',
        box = true,
    },
    ['INPUT_DROP_AMMO'] = {
        label = 'F10',
        box = true,
    },
    ['INPUT_THROW_GRENADE'] = {
        label = 'G',
        box = true,
    },
    ['INPUT_VEH_MOVE_LR'] = {
        label = 'D',
        box = true,
    },
    ['INPUT_VEH_MOVE_UD'] = {
        label = 'CTRL IZQ',
        box = true,
    },
    ['INPUT_VEH_MOVE_UP_ONLY'] = {
        label = 'SHIFT IZQ',
        box = true
    },
    ['INPUT_VEH_MOVE_DOWN_ONLY'] = {
        label = 'CTRL IZQ',
        box = true,
    },
    ['INPUT_VEH_MOVE_LEFT_ONLY'] = {
        label = 'A',
        box = true,
    },
    ['INPUT_VEH_MOVE_RIGHT_ONLY'] = {
        label = 'D',
        box = true,
    },
    ['INPUT_VEH_SPECIAL'] = {
        label = '(NONE)',
        box = true,
    },
    ['INPUT_VEH_GUN_LR'] = {
        label = 'MOUSE RIGHT',
        box = true,
    },
    ['INPUT_VEH_GUN_UD'] = {
        label = 'MOUSE DOWN',
        box = true,
    },
    ['INPUT_VEH_AIM'] = {
        label = 'MOUSE RIGHT',
        box = true,
    },
    ['INPUT_VEH_ATTACK'] = {
        label = 'MOUSE LEFT',
        box = true,
    },
    ['INPUT_VEH_ATTACK2'] = {
        label = 'MOUSE RIGHT',
        box = true
    },
    ['INPUT_LOOK_DOWN_ONLY'] = {
        label = 'MOUSE DOWN',
        box = true,
    },
    ['INPUT_LOOK_RIGHT_ONLY'] = {
        label = 'MOUSE RIGHT',
        box = true,
    },
    ['INPUT_LOOK_UP_ONLY'] = {
        label = '(NONE)',
        box = true,
    },
    ['INPUT_LOOK_LEFT_ONLY'] = {
        label = '(NONE)',
        box = true,
    },
    ['INPUT_CELLPHONE_CANCEL'] = {
        icon = '<i class="fa-solid fa-delete-left"></i>',
    },
    ['INPUT_CELLPHONE_OPTION'] = {
        icon = '<i class="fa-solid fa-trash"></i>'
    },
    ['INPUT_CELLPHONE_RIGHT'] = {
        icon = '<i class="fa-solid fa-right"></i>',
    },
    ['INPUT_CELLPHONE_LEFT'] = {
        icon = '<i class="fa-solid fa-left"></i>',
    },
}
```

{% endcode %}


---

# 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://bytexcripts.gitbook.io/bytexcripts-docs/text-ui/settings.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.
