> 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/akxi-lie/deletecar/pei-zhi.md).

# 配置

```lua
Config = {}

Config.Debug = false            -- 调式模式：如有任何失效的功能才开启（会有大量输出）

Config.Locale = 'cn'            -- 语言选择：'cn'（中文），en（英文）你可以添加更多

Config.UI = 'ak-lib'            -- 用于通知和文本UI的库(前往商店免费领取)

Config.Admin = {
    StartCommand = 'dc',        -- 管理员命令：启动清理车辆倒计时（可/dc 秒数）
    StopCommand  = 'sc',        -- 管理员命令：停止清理过程
    License = {                 -- 许可证（license）
        'license:xxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
        -- 可继续添加更多管理员
    }
}

Config.Delete = {
    Timer = 180,                -- 倒计时秒数（建议 180 秒）
    NotifyInterval = true,      -- 是否显示倒计时通知（180秒提示一次，120秒提示一次，60秒提示一次）
    DeleteInSafeZone = false,   -- 是否删除安全区内的车辆（如果为 true，安全区内的车辆将被删除）
}

Config.Schedule = {             -- 建议每 4 小时清理一次（大型服务器随便）
    Enabled = true,             -- 是否启用定时自动删车功能（24小时制）
    DailyTimes = {              -- 每天的哪些时间点进行自动删除车辆
        '01:00',
        '02:00',
        '03:30',
        '04:00',
        '05:00',
        '06:00',
        '07:00',
        '08:00',
        '09:00',
        '10:00',
        '11:00',
        '12:00',
        '13:00',
        '14:00',
        '15:30',
        '16:00',
        '17:00',
        '18:00',
        '19:00',
        '20:00',
        '21:00',
        '22:00',
        '23:00',
        '00:00'
        -- 可以添加更多时间或注删除不需要的时间
    },
}

Config.Zones = {                              -- 建议把安全区设置在有展车的车店
    {
        coords = vec3(-43.6, -1100.2, 26.2),  -- 安全区的坐标（中心）
        radius = 30.0                         -- 安全区的半径（单位：米）
    },
    -- 可以继续添加更多安全区
}
```


---

# 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/akxi-lie/deletecar/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.
