> For the complete documentation index, see [llms.txt](https://prime-scripts-1.gitbook.io/pr-scripts-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prime-scripts-1.gitbook.io/pr-scripts-docs/docs/pr-armwrestling/configuration.md).

# ⚙️Configuration

```etlua

Config = {
  Framework = 'ESX', -- Set to 'ESX' or 'QB' depending on your framework
  Notify = 'ox', -- 'ox' or 'QB'
  Lang = 'es', -- 'es' or 'en', you can also add new langs below
  Props = { 
         {x = -1252.57, y = -1504.66, z = 4.58, model = 'prop_arm_wrestle_01'},
         {x = 2008.12, y = 3048.69, z = 46.5, model = 'bkr_prop_clubhouse_arm_wrestle_01a'},
         {x = -1165.2769, y = -1162.4551, z = 5.6355, model = 'bkr_prop_clubhouse_arm_wrestle_01a'},
        },
    --ADD AS MANY TABLES AS YOU WANT
        --[[Table prop models:
        'prop_arm_wrestle_01'
        'bkr_prop_clubhouse_arm_wrestle_01a'
        'bkr_prop_clubhouse_arm_wrestle_02a' 
    ]]

  ShowBlip = true, -- True to show the blip for ALL tables
  Blip = { -- Blip info
    title = "Arm Wrestling",
    colour = 0,
    id = 1
  }
}


Locales = { 
  ['en'] = {
    ['win'] = "¡You won!",
    ['lose'] = "¡You lost!",
    ['full'] = "There is an active match",
    ['tuto'] = "To win, press quickly ",
    ['wait'] = "Waiting for an opponent",
    ['start'] = "~y~E~w~ to do a pulse",
    ['go'] = "GO GO GO!!",
  },
  ['es'] = {
    ['win'] = "¡Has ganado!",
    ['lose'] = "¡Has perdido!",
    ['full'] = "Ya hay un combate activo",
    ['tuto'] = "Para ganar, pulsa rápido ",
    ['wait'] = "Esperando al oponente",
    ['start'] = "~y~E~w~ para hacer un pulso",
    ['go'] = "GO GO GO!!",
  },
}
```


---

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

```
GET https://prime-scripts-1.gitbook.io/pr-scripts-docs/docs/pr-armwrestling/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.
