> For the complete documentation index, see [llms.txt](https://ak-scripts.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ak-scripts.gitbook.io/docs/mian-fei-jiao-ben/gao-ji-xian-zhi-zhi-ye-che-liang/pei-zhi.md).

# 配置

你可以在`config.lua`更改列出功能！

```lua
Config = {}

Config.Framework = 'auto'                            -- 框架设置：'auto'（自动识别）、'qb'、'qbx'、'esx'

Config.NotificationSystem = 'auto'                   -- 通知系统设置：'auto'（自动检测）、'ox_lib'、'okokNotify'、'qb'、'qbx'、'esx'

Config.CheckInterval = 500                           -- 上车后检查间隔（毫秒）

Config.Translations = {
    error_title = '错误',
    no_permission = '你没有权限驾驶这辆车！',
}

Config.JobVehicles = {
    police = {               -- 警察职业
        vehicles = {
            `police`,        -- 标准警车
            `policeb`,       -- 警用摩托车
            `polmav`,        -- 警用直升机
            -- 你可以添加更多车辆
        }
    },

    ambulance = {            -- 医护职业
        vehicles = {
            `ambulance`,     -- 救护车
            -- 你可以添加更多车辆
        }
    },
    -- 你可以添加更多职业和车辆
}
```


---

# 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://ak-scripts.gitbook.io/docs/mian-fei-jiao-ben/gao-ji-xian-zhi-zhi-ye-che-liang/pei-zhi.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.
