# Config file

```lua
Config, Locales = {}, {}

Config.Locale = 'en'

Config.CommandName = "vehiclecontrol"
Config.CommandDesc = "Opens the vehicle control menu"
Config.CommandBind = "F3"

Config.BlacklistedVehicles = { -- Blacklist vehicles from opening the menu via their class
    13, -- Bikes
}

-------------------------- LOCALES (DON'T TOUCH)

function _okok(id)
	if Locales[Config.Locale] == nil then
		return nil
	elseif Locales[Config.Locale][id] then
		return Locales[Config.Locale][id]
	else
		print("The locale '"..id.."' doesn't exist!")
	end
end
```


---

# 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://docs.okokscripts.io/scripts/okokvehiclecontrol/config-file.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.
