Noeek / Quiver

add some feature and chinese localisation 汉化和功能改进

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

汉化 & 修复中文端bug

安装

  1. 下载链接 (总是最新)
  2. 解压zip文件
  3. 更改文件名为 Quiver
  4. 移动插件文件夹至 <WoW install>/Interface/AddOns/
  5. 重启游戏.

WoW 1.12.1 addon for Hunters. Use /Quiver or /qq to open the configuration menu.

Features

Aspect Tracker

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)

Auto Shot Timer

Shooting

Reloading

  • 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.

Castbar

  • Shows Aimed Shot, Multi-Shot, and Trueshot
  • Includes a pfUI module that adds Trueshot support to the pfUI castbar

Range Indicator

  • 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.

Tranq Shot Announcer

Shows the Tranquilizing Shot cooldown of every hunter. Announces when casting Tranq, and again if the shot misses.

Trueshot Aura Alarm

None Expiring

This checks if you have Trueshot Aura talented. If so, Quiver tracks the buff and duration, and warns you to recast it.

Possible Future Features

Ideas for where Quiver could go, and open to discussion.

Ammo Counter

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.

Hunter's Mark Timer

Maybe something like the Tranq UI for keeping track of which hunters mark each target, and the remaining time.

Macro Replacements / Ability Overrides

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.

Pet Management

It's a rabbit hole to go down, and other addons exist for pet management.

Contributing

Localization

Quiver localizes all text, so theoretically it supports translations, but I don't know where to download a non-English client.

Custom Events

Files in /Events hook into game functions. Use these events if possible instead of declaring your own hooks.

  • Spellcast: CastSpell, CastSpellByName, UseAction

Module Fields and Lifecycle Hooks

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.

About

add some feature and chinese localisation 汉化和功能改进

License:GNU Affero General Public License v3.0


Languages

Language:Lua 100.0%