Skip to content
/ Quiver Public
forked from SabineWren/Quiver

Hunter addon for World of Warcraft 1.12.1

License

Notifications You must be signed in to change notification settings

Qeynos/Quiver

 
 

Repository files navigation

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

$${\color{red}* \color{orange}* \color{yellow}*}$$ Installation Methods $${\color{yellow}* \color{orange}* \color{red}*}$$

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

Inspired by:

  • HSK -- Ignores instant spells such as Arcane Shot
  • YaHT -- Resets swing timer while casting a shot

Castbar

  • Shows Aimed Shot, Multi-Shot, and Trueshot

Lua Functions

CastNoClip – Cast spell by name if it won't clip a shot. Requires the Auto Shot module.

/script Quiver.CastNoClip("Trueshot")

CastPetAction – Find and cast pet action if possible.

/script Quiver.CastPetAction("Furious Howl"); CastSpellByName("Multi-Shot")

PredMidShot – Low level predicate for no-clip behavior. Used internally to implement CastNoClip.

/script if not Quiver.PredMidShot() then DEFAULT_CHAT_FRAME:AddMessage("Reloading") end

Range Indicator

  • Based on Egnar
  • Automatically locates action bar slots
  • Warns you when abilities missing from action bar

Requires corresponding spellbook abilities on your action bars, or macros using the same texture. 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.

Installation

Option 1 - Pre-bundled zip

Simplest installation, but doesn't automate version updates.

  1. Download latest version
  2. Extract the Zip file
  3. Change the folder name to Quiver
  4. Move folder into <WoW install>/Interface/AddOns/
  5. Restart WoW

Option 2 - Clone latest release

Requires Git. Easy to update with addon managers or git pull

  1. Open a terminal in your addons directory
  2. git clone https://github.com/SabineWren/Quiver --branch latest-release
  3. Restart WoW

Option 3 - Build from source

Do you live on the bleeding edge?

  1. Open a terminal in your addons directory
  2. git clone https://github.com/SabineWren/Quiver
  3. npm install
  4. npm run bundle-once
  5. Restart WoW

Contributing

Localization

Quiver is fully localized. If you want to contribute a new locale, see zhCN for reference in /Locale/:

  1. <locale>.client.lua for values that exactly correspond to the client, ex. "Multi-Shot". Should be identical values to what other addons use.
  2. <locale>.translations.lua for Quiver-specific text that requires translation.

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 Lifecycle

Feature are packaged and enabled as 'modules' that implement lifecycle hooks. See the type definitions for details.

About

Hunter addon for World of Warcraft 1.12.1

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Lua 95.8%
  • JavaScript 4.2%