# Configuration

## Configuration File

```lua
Config = {}
Config.Framework = 'qb' -- qb | esx
Config.Menu = 'ox_lib' -- MenuV | ox_lib
Config.DriftPresetMenuKey = 'RCONTROL'

Config.InstallItemName = 'kit-drift'
Config.InstallJob = 'mechanic' -- Job can install the system, false anyone can install the item

-- UseWhitelist: (string) - 'config' | 'share' | false
-- 'config': allow to install drift system on car listed in Config.Whitelisted
-- 'share': use the QBCore shared vehicles object, cars you want to able install need a property 'drift' = true
-- false: can install on any car
Config.UseWhitelist = 'config'

-- Required for UseWhitelist = 'config'
Config.WhitelistCars = {'buffalo3','buffalo5'}

Config.Smoke = {
    enabled = true,     -- enable smoke by default, false need to player execute de command /smoke for toggle smoke
    command = 'smoke',  -- command to toggle smoke on/off
    size = 0.2,         -- smoke size
    dens = 10,          -- smoke density
    distance = 60.0,    -- distance at which the player begins to see the smoke (sync), if you experience a performance loss, it is recommended to set a low value.

    -- Not implemented, maybe for the future. --
    burnout_size = 0.8, -- burnout smoke size
    key = 348,          -- force keypress to smoke
}
```


---

# 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://fivem.lvsoft.com.ar/standalone/lvs-drift/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.
