插件中文资料库
中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。
- 日常任务、练级和满级玩法辅助
- 界面体验优化和信息展示增强
- 副本前先测试兼容性,确认不报错后再长期使用
Game Objects Database 插件下载与使用指南
本页整理了 Game Objects Database 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。
适合谁用
Game Objects Database 是一款 数据导出 / 运行库 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。
基本信息
- 插件作者:Emberhollow
- 插件分类:数据导出 / 运行库
- 适配版本:12.0.7
- 累计下载:5,626
安装方法
- 点击上方下载按钮获取 Game Objects Database插件文件。
- 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
- 重启游戏或在角色界面点击插件,确认 Game Objects Database 已启用。
- 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。
使用建议
Game Objects Database 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。
Game Objects Database 常见问题
Game Objects Database 适合需要 数据导出 / 运行库 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。
下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。
常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。
可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。
插件 AI 问答
可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。
包含游戏对象定义、美术套件及显示信息。
针对插件作者:该库提供原始的WoW DB2数据,您的插件可直接读取——无需依赖GetItemInfo/服务器往返、无需等待客户端缓存,且能访问玩家从未遇到过的ID。数据按客户端版本和区域导出,因此在不同版本(经典旧世、硬核、探索赛季、大灾变、熊猫人之谜、正式服)中均保持正确。本插件无界面——纯粹为其他插件提供数据支持。
**本插件包含的表**
GameObjectAnimGroupMember、GameObjectArtKit、GameObjectDiffAnimMap、GameObjectDisplayCondition、GameObjectDisplayInfo、GameObjectDisplayInfoXSoundKit、GameObjectLabel、GameObjects、Stationery
每张表在共享全局变量WowData下以其自身名称注册,因此您可以直接通过表名查询——分类仅用于数据的打包和分发。
**用法**
**独立模式(默认生效)**
本数据插件为独立模块,并在共享全局变量WowData上暴露内置访问器——无需核心插件。直接读取其提供的任意一张表:
```lua
local payload = WowData:GetTable("GameObjectAnimGroupMember")
-- payload = { columns = {...}, rows = {...}, build = "...", locale = "..." }
local rows = WowData:GetRows("GameObjectAnimGroupMember")
```
**配合DB2 Connector核心插件(可选便利功能)**
安装DB2 Connector核心插件后,可在同一全局变量WowData上获得更丰富的查询API(:Get、:Rows、:GetByID、:GetColumns、:ListTables等),外加分类发现功能(:ListCategories、:GetTablesInCategory、:GetCategoryForTable)。以下调用同样有效:
```lua
local row, columns = WowData:GetByID("GameObjectAnimGroupMember", 1)
local tables = WowData:GetTablesInCategory("GameObjects")
```
**CurseForge:** https://www.curseforge.com/wow/addons/game-objects-database
Exports the Game Objects WoW DB2 tables as a standalone data library (9 tables).
Game object definitions, art kits and display info.
For addon authors: this ships the raw WoW DB2 data so your addon can read it directly — no GetItemInfo/server round-trips, no waiting on the client cache, and it works for IDs the player has never encountered. The data is exported per client build and locale, so it stays correct across flavors (Classic Era, Hardcore, SoD, Cata, MoP, retail). There is no UI — it's a pure data library other addons depend on.
Tables in this addon
GameObjectAnimGroupMember, GameObjectArtKit, GameObjectDiffAnimMap, GameObjectDisplayCondition, GameObjectDisplayInfo, GameObjectDisplayInfoXSoundKit, GameObjectLabel, GameObjects, Stationery
Each table self-registers under its own name on the shared WowData global, so you query it by table name exactly as you'd expect — the category is just how the data is packaged and shipped.
Usage
Standalone (works by default)
This data addon is self-contained and exposes a built-in accessor on the shared WowData global — no core addon required. Read any table it ships directly:
local payload = WowData:GetTable("GameObjectAnimGroupMember")
-- payload = { columns = {...}, rows = {...}, build = "...", locale = "..." }
local rows = WowData:GetRows("GameObjectAnimGroupMember")
With the DB2 Connector core addon (optional convenience)
Install the DB2 Connector core addon to get a richer lookup API (:Get, :Rows, :GetByID, :GetColumns, :ListTables, …) on the same WowData global, plus category discovery (:ListCategories, :GetTablesInCategory, :GetCategoryForTable). The same call still works:
local row, columns = WowData:GetByID("GameObjectAnimGroupMember", 1)
local tables = WowData:GetTablesInCategory("GameObjects")
CurseForge: https://www.curseforge.com/wow/addons/game-objects-database用户评价
暂无 / 5,0 条评价相关推荐
继续看看这些内容