- 下载链接 (总是最新)
- 解压zip文件
- 更改文件名为
Quiver
- 移动插件文件夹至
<WoW install>/Interface/AddOns/
- 重启游戏.
WoW 1.12.1 addon for Hunters. Use /Quiver
or /qq
to open the configuration menu.
Never lose track of your current aspect
None | Pack | Cheetah |
- No UI while in Aspect of the Hawk
- Displays Hawk texture when no aspect enabled
- Shows border while Pack active (potentially other hunters)
- Resets swing timer while casting a shot; taken from YaHT
- Ignores instant spells such as Arcane Shot; taken from HSK
- Works with Trueshot
Auto Shot Timer module also enables macros that avoid clipping auto shot:
- Aimed Shot
/qqaimedshot
- Multi-Shot
/qqmultishot
- Trueshot
/qqtrueshot
Casting this way won't interrupt current cast, so move first if casting volley.
- Shows Aimed Shot, Multi-Shot, and Trueshot
- Includes a pfUI module that adds Trueshot support to the pfUI castbar
- Based on Egnar
- Automatically locates action bar slots
- Warns you when abilities missing from action bar
Requires some raw spellbook abilities on your action bars (not macros). Hidden action bars work fine.
Shows the Tranquilizing Shot cooldown of every hunter. Announces when casting Tranq, and again if the shot misses.
None | Expiring |
This checks if you have Trueshot Aura talented. If so, Quiver tracks the buff and duration, and warns you to recast it.
Ideas for where Quiver could go, and open to discussion.
Not sure where to scope this, as other addons can track ammo stored on bank alts. Perhaps an overlay warning when currently equipped ammo runs low in inventory.
Maybe something like the Tranq UI for keeping track of which hunters mark each target, and the remaining time.
Possibly a bad idea, since Roid-Macros can do everything these can, and users can easily adjust macros:
- Prevent cancelling aspects, except for Cheetah and Pack.
- Auto-cancel Cheetah and Pack when attempting to activate a non-Cheetah/Pack aspect.
- Pamper pet (Call -> Revive -> Mend).
- While in combat, replace [Trap] with (Petfollow -> FD -> [Trap]).
- Prevent Auto Shot from cancelling itself.
- Prioritize Counterattack over Wing Clip.
If the behavior isn't both expected and desired, then adding these to Quiver increases the configuration burden for users. Maybe an always-on module, but each override would have its own configuration switch to toggle it. If they all default to off, that would reduce the config burden for users who don't want their abilities altered.
It's a rabbit hole to go down, and other addons exist for pet management.
Quiver localizes all text, so theoretically it supports translations, but I don't know where to download a non-English client.
Files in /Events
hook into game functions. Use these events if possible instead of declaring your own hooks.
- Spellcast: CastSpell, CastSpellByName, UseAction
Id: string
Name: string (use locale)
OnEnable: unit -> unit
Called every time user enables the module.
Called during initialization after RestoreSavedVariables.
OnDisable: unit -> unit
Called every time user disables the module.
OnInterfaceLock: unit -> unit
Not called while module disabled.
Called every time user locks the UI.
OnInterfaceUnlock: unit -> unit
Not called while module disabled.
Called every time user unlocks the UI.
OnResetFrames: unit -> unit
Called when user clicks a reset button.
Reset All calls this even while module disabled.
OnSavedVariablesRestore: table -> unit
GameEvent: "PLAYER_LOGIN"
Loads state used exclusively used by the module (don't add SavedVariables to the .toc).
Called exactly once, even for disabled modules.
OnSavedVariablesPersist: unit -> table
GameEvent: "PLAYER_LOGOUT"
Persists state used exclusively by the module.
Called exactly once, even for disabled modules.