插件中文资料库
中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。
- 副本、团队本和大秘境战斗提醒
- 界面布局、头像框、姓名板和动作条优化
- 伤害、治疗、仇恨和战斗数据统计
ZenTracker 插件下载与使用指南
本页整理了 ZenTracker 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。
适合谁用
ZenTracker 是一款 首领战斗 / 运行库 / 职业 / 增益与减益 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。
基本信息
- 插件作者:Kaminaris
- 插件分类:首领战斗 / 运行库 / 职业 / 增益与减益
- 适配版本:9.0.2
- 累计下载:11,846
安装方法
- 点击上方下载按钮获取 ZenTracker插件文件。
- 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
- 重启游戏或在角色界面点击插件,确认 ZenTracker 已启用。
- 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。
使用建议
ZenTracker 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。
ZenTracker 常见问题
ZenTracker 适合需要 首领战斗 / 运行库 / 职业 / 增益与减益 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。
下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。
常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。
可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。
插件 AI 问答
可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。
ZenTracker 是一款魔兽世界插件,主要用于伤害统计、输出循环或战斗表现分析、副本、团本、大秘境或钥石辅助。建议根据自己的版本和插件环境先测试兼容性。
插件用途
ZenTracker 主要面向需要首领战斗功能的玩家,用来改善游戏体验、减少重复操作或补充默认界面没有直接提供的信息。
适用场景
- 伤害统计、输出循环或战斗表现分析
- 副本、团本、大秘境或钥石辅助
使用建议
安装后建议先在角色选择界面或插件管理器中确认已启用,再进入游戏测试是否与现有整合包、WA 和其他插件冲突。如遇报错,可以先禁用同类插件排查。
ZenTracker - Cooldown tracker
Join discord for support:
This is addon version of this aura: https://wago.io/r14U746B7
All credit goes to Zen. I just converted his weakaura to addon and added configuration GUI.
No need to install LibGroupInspect, it is included in this addon.
Dependencies: WeakAuras2
NOTE: You MUST have one or more front-end WAs to see anything!
Description
Unlike some other interrupt tracking WAs, ZenTracker displays static bars instead of creating them only after a spell is cast for the first time. Additionally, ZenTracker can be used to track all types of useful spell types beyond interrupts (e.g., hard CC and utility CDs). Finally, ZenTracker uses a lightweight front-end client model, allowing easy customization of the front-end display WAs while the back-end Addon does all of the heavy lifting.
ZenTracker uses a hybrid tracking model: For other players using ZenTracker, it will use addon messages to exchange accurate cooldown information. For any players not using ZenTracker, it will fallback to local, combatlog-based tracking. While the combatlog-based tracking does contain support for many cooldown modifiers, it is not complete; in some cases (e.g., reduction via azerite trait) it will overestimate the cooldown.
Back-End Addon Configuration
Unlike aura version, this addon has proper GUI configuration. You can find it in Interface -> Addons -> ZenTracker
Default Front-End WAs
You can configure the front-end WAs to look however you like, but the ones below serve as
reasonable defaults. You can find information on how to configure them in the
"Front-End Configuration" section below (and the images included on their respective Wago pages).
| Type | Sorting | Link | Update |
| Progress Bar | Info (Type>Spell>Name) | https://wago.io/r1YXub93X | Iteration 40+ |
| Progress Bar | Availability | https://wago.io/BJnNd-c2X | Iteration 40+ |
Community Front-End WAs
Here are some of the available front-end WAs that have been developed by other members of the
community. Check them out for amazing functionality beyond the default front-end WAs provided above!
| Author | Link | Description |
| Nnogga | https://wago.io/Hk8U8kanm | Displays rows of icons that are attached to party member UI frames |
Front-End Configuration
You can find the configuration settings under "ZT Front-End ..." -> Actions Tab -> Expand OnInit Code.
The comments explain what each setting controls.
You can change the look and feel of the front-end WAs as usual using the WeakAuras configuration menu under
the Group/Display tabs. Each of the default front-end WAs above contains a list of types of spells it displays.
The example below will display HARDCC, SOFTCC, DISPEL, and UTILITY types.
aura_env.types = {
INTERRUPT=false,
HARDCC=true,
SOFTCC=true,
DISPEL=true,
EXTERNAL=false,
HEALING=false,
UTILITY=true,
STHARDCC=false,
PERSONAL=false,
IMMUNITY=false,
DAMAGE=false,
}
Detailed Information
This is the backend portion which tracks cooldowns associated with various types of
spells (e.g., HARDCC and INTERRUPT). It exposes the following event types to WeakAuras,
which you can use in developing your own front-end WAs for ZenTracker, or any other WAs
that depend on group spell cast information:
- ZT_ADD (type, watchID, member, spellID)
- ZT_TRIGGER (type, watchID, duration, expiration)
- ZT_REMOVE (type, watchID)
Arguments:
- type is the type of spell. Currently each tracked spell is assigned one of the following types:
HARDCC, SOFTCC, DISPEL, INTERRUPT, EXTERNAL, HEALING, and UTILITY, STHARDCC. - watchID is a unique identifier for the purposes of using a Trigger State Updater in WeakAura.
This can be used to index into the allstates table. - member is a table consisting of information about the group member, with fields such as .name and .specID.
- spellID corresponds to the WoW API ID for the spell. This can be used to display an appropriate icon.
- duration is the original time (in seconds) of the cooldown, adjusted according to talents taken by
the group member that cast it. - expiration is when the cooldown will expire. Initially equal to "GetTime() + duration", but may be modified in future ZT_TRIGGER events
The back-end WA also listens for ZT_REGISTER (type, id) and ZT_UNREGISTER (type, id) events from the
front-end WAs, where type is the same as above and id is a unique identifier for the front-end WA
(e.g., aura_env.id). This allows flexible loading of front-end WAs according to the WA configuration
menu, and for the back-end to only watch types that one or more front-end WAs are interested in.
用户评价
暂无 / 5,0 条评价相关推荐
继续看看这些内容