魔兽科普汇聚WoW玩家们专属综合资讯门户网站!

GearVars

GearVars 是一款魔兽世界插件,主要用于其他插件相关功能。建议根据自己的版本和插件环境先测试兼容性。

免费下载 举报 收藏插件
插件详情

插件中文资料库

中文说明、玩家点评、适用场景和替代推荐,方便快速判断是否适合你。

玩家一句话点评
GearVars 适合需要其他插件、界面增强或玩法辅助的玩家,建议结合自己的职业和版本先测试再长期使用。
适用场景
  • 界面布局、头像框、姓名板和动作条优化

GearVars 插件下载与使用指南

本页整理了 GearVars 的功能用途、适用人群、安装方法和常见问题,方便玩家快速判断是否需要安装。

适合谁用

GearVars 是一款 战斗 / 其他插件 类插件,适合需要优化界面、提升操作效率或补充游戏信息提示的魔兽世界玩家。

基本信息

  • 插件作者:matibaski
  • 插件分类:战斗 / 其他插件
  • 适配版本:1.15.8
  • 累计下载:4,318

安装方法

  1. 点击上方下载按钮获取 GearVars插件文件。
  2. 解压后将插件文件夹放入 World of Warcraft/_retail_/Interface/AddOns 目录。
  3. 重启游戏或在角色界面点击插件,确认 GearVars 已启用。
  4. 如果插件不生效,请检查版本是否匹配,或关闭同类冲突插件后重试。

使用建议

GearVars 安装后建议先在角色界面确认已启用,进入游戏后根据插件提供的命令、小地图按钮或设置面板进行调整。如遇到报错,可先单独启用该插件排查冲突。

GearVars 常见问题

这个插件适合哪些玩家?

GearVars 适合需要 战斗 / 其他插件 类功能的玩家,特别是希望提升游戏便利性、界面管理或战斗信息获取效率的用户。

下载后怎么安装?

下载后解压到 Interface/AddOns 目录,然后重启游戏并在角色界面启用插件。

为什么插件不显示或不生效?

常见原因是目录多套一层、游戏版本不匹配、依赖插件缺失或同类插件冲突。

有没有类似插件可以替代?

可以查看本页的替代插件推荐和相关插件区域,按下载量和分类选择同类工具。

插件 AI 问答

可以问:这个插件正式服能用吗、和 DBM 冲突吗、怎么设置、有没有替代插件。

GearVars 是一款魔兽世界插件,主要用于其他插件相关功能。建议根据自己的版本和插件环境先测试兼容性。

插件用途

GearVars 主要面向需要其他插件功能的玩家,用来改善游戏体验、减少重复操作或补充默认界面没有直接提供的信息。

适用场景

  • 其他插件相关功能

使用建议

安装后建议先在角色选择界面或插件管理器中确认已启用,再进入游戏测试是否与现有整合包、WA 和其他插件冲突。如遇报错,可以先禁用同类插件排查。

GearVars

GearVars window

Stop editing macros every time you replace a weapon or shield.

GearVars stores your Main Hand, Off Hand, and Shield item names once. Any macro that uses the tokens {MH}, [OH], or <SH> is automatically rewritten with the current item names whenever you change gear. Great for warriors who stance-dance and swap shields, but works for any class.

Tested on WoW Classic Era 1.15 (Interface 11508).

Quick start

  1. Type /gv to open the window.
  2. Click Detect from Currently Equipped — fills the three slots from what you're wearing.
  3. Click Auto-Bind Macros (Convert to Tokens) — scans every macro you have, replaces literal item names with {MH} / {OH} / {SH} tokens, and stores them.

Done. Next time you replace a weapon:

  • Drag the new item onto the matching slot in the GearVars window, or
  • Equip it and run /gv detect.

Every macro that uses that slot updates instantly.

Example

Before:

#showtooltip Shield Block
/cast [stance:1/3] Defensive Stance
/equipslot [noequipped:shields] 16 Sequoia Hammer of Power
/equipslot [noequipped:shields] 17 Heart of Agamaggan
/cast Shield Block

After Auto-Bind, GearVars stores the template:

#showtooltip Shield Block
/cast [stance:1/3] Defensive Stance
/equipslot [noequipped:shields] 16 {MH}
/equipslot [noequipped:shields] 17 {SH}
/cast Shield Block

The macro your client actually runs is still the fully expanded form — GearVars writes the expanded body back to the macro whenever your gear changes.

Tokens

You can write tokens in any of three styles, whichever your keyboard makes easiest:

  • {MH} {OH} {SH}
  • [MH] [OH] [SH]
  • <MH> <OH> <SH>

Square brackets are safe here — MH/OH/SH aren't real macro conditionals, and substitution happens before WoW ever parses the macro.

Inspecting bound macros

The right side of the window lists every macro GearVars is managing. Hover a row to preview the stored template body:

Macro tooltip preview

Right-click a row to unbind that macro (the macro itself isn't deleted — only GearVars forgets it). Orphaned templates — where the macro was renamed or deleted outside GearVars — are flagged in red.

Slash commands

Command What it does
/gv Open the window
/gv detect Fill MH/OH/SH from equipped items
/gv autobind Scan all macros, replace item names with tokens
/gv bind <name> Capture one macro as a template
/gv edit <name> Restore template body in the macro for editing
/gv unbind <name> Forget a template
/gv list Show bound templates
/gv apply Re-write bound macros with current gear
/gv minimap Toggle the minimap button
/gv reset Wipe gear + templates (with confirmation)
/gv help Print the command list

Notes

  • Combat-safe. EditMacro is blocked by Blizzard during combat lockdown. If you change gear mid-fight, the update is queued and applied the instant combat ends.
  • 2H detection. Setting a two-handed weapon as Main Hand grays out and clears the Off Hand slot.
  • Per-character storage. Each character has its own gear + templates.
  • No external libs. Pure Lua, no LibStub/LibDBIcon/Ace dependencies.
  • Macro size limit. WoW caps macro bodies at 255 characters. If your expanded macro overflows, WoW will truncate it.

Install

From CurseForge / Wago

(Once published) Install from the CurseForge or Wago client.

Manual

  1. Download the latest release zip.
  2. Extract so the folder lives at: -macOS:World of Warcraft/_classic_era_/Interface/AddOns/GearVars/ -Windows:World of Warcraft\_classic_era_\Interface\AddOns\GearVars\
  3. Restart WoW (or /reload). Enable GearVars in the AddOns list at character select.

License

MIT — see LICENSE.

CurseForge: https://www.curseforge.com/wow/addons/gearvars

用户评价

暂无 / 5,0 条评价
免费插件下载后可以评价;付费插件 / WA 购买后可以评价;委托订单完成后可以评价。
暂无评价。

相关推荐

继续看看这些内容

全站搜索