> 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/blips/pei-zhi.md).

# 配置

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

```lua
Config = {}

Config.group = {
    {
        label = "~r~~h~产业~h~~s~",                        -- 组标题（为空亦可无标题合并）
        blips = {                                          -- 本组内的 blip 列表
            {
                name       = "猫咖",                       -- 名称
                sprite     = 489,                          -- 图标样式
                color      = 46,                           -- 图标颜色
                scale      = 0.8,                          -- 图标大小
                shortRange = true,                         -- true = 小地图走远看不到，false = 一直显示在小地图
                coords     = vector3(200.3, -900.4, 30.7)  -- 坐标（x, y, z）支持 v3/v4
            },
            {
                name       = "~y~酒吧~s~",                 -- 黄色字体
                sprite     = 93,
                color      = 7,
                scale      = 0.8,
                shortRange = true,
                coords     = vector3(250.1, -1020.5, 29.3)
            },
            {
                name       = "技工",
                sprite     = 72,
                color      = 26,
                scale      = 0.8,
                shortRange = true,
                coords     = vector3(-350.8, -130.3, 38.0)
            },
            -- 在此添加更多同组 blip
        }
    },

    {
        label = "",                                                -- 为空（可创建单独图标，亦可无标题合并）
        blips = {
            {
                name       = "~g~~h~~italic~联邦局~italic~~h~~s~", -- 绿色字体 + 加粗字体 + 斜体字体
                sprite     = 590,
                color      = 1,
                scale      = 0.8,
                shortRange = true,                                 -- true = 小地图走远看不到，false = 一直显示在小地图
                coords     = vector3(-5.8, 12.9, 15.7)
            },
        }
    },
    -- 添加更多组，复制上方结构
}


--[[           🎨 颜色使用说明 🎨

        代码   含义 / 颜色	    示例效果
        ~r~	    🔴 红色	    ~r~红色文字~s~
        ~g~	    🟢 绿色	    ~g~绿色文字~s~
        ~b~	    🔵 蓝色	    ~b~蓝色文字~s~
        ~y~	    🟡 黄色	    ~y~黄色文字~s~
        ~p~	    🟣 紫色	    ~p~紫色文字~s~
        ~c~	    ⚪️ 灰色	    ~c~灰色文字~s~
        ~m~	    ⚫️ 黑色	    ~m~黑色文字~s~
        ~o~	    🟠 橙色	    ~o~橙色文字~s~
        ~w~	    ⚪️ 白色 	~w~白色文字~s~
        ~u~	    🔵 浅蓝色	~u~青色文字~s~

        ~s~       重置样式（必须结尾加上 ~s~）   

        ~h~	     🅱️ 加粗	      ~h~高亮文字~h~
        ~italic~ 📝 斜体    ~italic~斜体文字~italic~

        🎨 组合示例：颜色 + 加粗
        ~y~~h~加粗黄色~h~~s~

        🎨 组合示例：颜色 + 斜体
        ~b~~italic~公共服务~italic~~s~

        🎨 组合示例：颜色 + 加粗 + 斜体
        ~g~~h~~italic~安全区域~italic~~h~~s~

]]
```


---

# 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/blips/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.
