插件中文资料库
中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。
- 任务路线、地图标记和野外探索
PeaversGetThereData 插件下载与使用指南
本页整理了 PeaversGetThereData 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。
适合谁用
PeaversGetThereData 是一款 运行库 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。
基本信息
- 插件作者:Peavers
- 插件分类:运行库
- 适配版本:12.1.0
- 累计下载:0
安装方法
- 点击上方下载按钮获取 PeaversGetThereData插件文件。
- 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
- 重启游戏或在角色界面点击插件,确认 PeaversGetThereData 已启用。
- 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。
使用建议
PeaversGetThereData 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。
PeaversGetThereData 常见问题
PeaversGetThereData 适合需要 运行库 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。
下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。
常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。
可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。
插件 AI 问答
可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。
一个用于《魔兽世界》的数据库插件,为 PeaversGetThere 提供其背后的静态旅行数据:传送门/船只/飞艇/轨道交通图、传送目录、飞行点、地下城入口,以及额外的可搜索名称。
功能
- 传送门、船只、飞艇和轨道交通图(节点 + 带类型和费用的边),用于跨大陆路线规划
- 传送目录,涵盖炉石及玩具变体、职业传送、工程虫洞和大秘境地下城传送
- 由 wago.tools 的 db2 导出生成的飞行点和地下城入口数据库(填补了客户端 API 中“仅已发现”的空白)
- 搜索扩展数据块,包含客户端无法枚举的名称和别名(拍卖行、传送门房间、理发店……)
- 干净公开的 API,供 PeaversGetThere 使用,也可供任何插件调用
- 无需配置,无保存变量——纯数据提供者
API
该插件暴露全局变量 PeaversGetThereData.API:
local API = PeaversGetThereData.API
-- 简单访问器:共享的只读表,格式为 { updated = "...", }
local nodes = API.GetTravelNodes() -- .nodes[nodeID] = { kind, map, x, y, name, faction, req }
local edges = API.GetTravelEdges() -- .edges[i] = { from, to, method, cost, req }
local teleports = API.GetTeleports() -- .teleports[i] = { id, type, dest, ... }
local taxi = API.GetTaxiNodes() -- .nodes[taxiNodeID] = { map, x, y, name, faction, edges }
local entrances = API.GetDungeonEntrances() -- .entrances[journalInstanceID] = { map, x, y, name, kind, faction }
-- 所有权转移:搜索扩展数据块只会移交一次,调用方在拼接后可释放它们。后续调用返回 nil。
local extras = API.TakeSearchExtras() -- { payloads = {...}, chunks = {...} }
安装
这是一个供其他 Peavers 插件使用的数据库,无需用户直接操作。PeaversUpdater 会随其父插件自动安装和更新它,也可以直接从 CurseForge 下载。
属于 Peavers 插件集 · 报告问题 · 在 Patreon 上支持开发
CurseForge: https://www.curseforge.com/wow/addons/peaversgettheredata
PeaversGetThereData
A data library addon for World of Warcraft that provides the static travel data behind PeaversGetThere: the portal/boat/zeppelin/tram travel graph, the teleport catalog, flight points, dungeon entrances, and extra searchable names.
Features
- Travel graph of portals, boats, zeppelins and trams (nodes + typed, costed edges) for cross-continent routing
- Teleport catalog covering hearthstones and toy variants, class teleports, engineering wormholes and M+ dungeon teleports
- Flight-point and dungeon-entrance databases generated from wago.tools db2 exports (fills the "only discovered" gaps in the client APIs)
- Search-extras blob with names and aliases the client cannot enumerate (auction houses, portal rooms, barbers, ...)
- Clean public API consumed by PeaversGetThere and available to any addon
- No configuration, no saved variables — pure data provider
API
The addon exposes a global PeaversGetThereData.API:
local API = PeaversGetThereData.API
-- Plain accessors: shared, read-only tables of shape { updated = "...", <payload> }
local nodes = API.GetTravelNodes() -- .nodes[nodeID] = { kind, map, x, y, name, faction, req }
local edges = API.GetTravelEdges() -- .edges[i] = { from, to, method, cost, req }
local teleports = API.GetTeleports() -- .teleports[i] = { id, type, dest, ... }
local taxi = API.GetTaxiNodes() -- .nodes[taxiNodeID] = { map, x, y, name, faction, edges }
local entrances = API.GetDungeonEntrances() -- .entrances[journalInstanceID] = { map, x, y, name, kind, faction }
-- Ownership transfer: search-extras chunks are handed over once so the caller
-- can free them after concatenating. Returns nil on subsequent calls.
local extras = API.TakeSearchExtras() -- { payloads = {...}, chunks = {...} }
Installation
This is a data library used by other Peavers addons and doesn't require direct user interaction. PeaversUpdater installs and updates it automatically alongside its parent addon, or download it directly from CurseForge.
Part of the Peavers addon collection · Report an issue · Support development on Patreon
CurseForge: https://www.curseforge.com/wow/addons/peaversgettheredata用户评价
暂无 / 5,0 条评价相关推荐
继续看看这些内容