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

# Configuration

#### <mark style="color:$success;">**Config File**</mark>

```lua
Config = {}

Config.Framework = "auto" -- Determines which framework to use: auto, esx, or qb
Config.Locales = {}
Config.Language = "en" -- en, de, fr, es, pt, ja, ar, zh
Config.Item = "contract"

function giveKey(vehicle, plate)
    if GetResourceState('qb-vehiclekeys') == 'started' then
        TriggerEvent("vehiclekeys:client:SetOwner", plate)
    else
        -- your code here
    end
end

Config.Command = {
    active = true,
    needItem = true,
    command = "contract"
}
```
