promotional bannermobile promotional banner
premium banner
Venge is a simple vengeance tracker addon

Description

Venge is a simple Resolve tracker addon. All it does is add a display showing the current value of your Resolve buff just underneath your Minimap.

There are no in-game commands, but some configuration options can be found at the top of main.lua. The options available are:

  • NEW in 1.3 - scale the font based on your Resolve value
  • x & y position (from the anchor)
  • The frame to anchor the display to (default is the Minimap)
  • The position of the anchor frame to attach Venge to
  • The position of the Venge frame to attach to the anchor
  • The size of the font

The default values are listed below:

local fontScaling = true

local x, y = 0, -5           -- x, y positioning (two numbers)
local anchorFrame = Minimap -- Frame to anchor Venge to
local frameAnchor = "BOTTOM"-- Position of the anchor frame to attach Venge to
local anchor = "TOP"   -- Position of the Venge frame to anchor
local fontSize = 12         -- size of the font (one number)
local fontFlag = "OUTLINE"  -- font details (OUTLINE, THICKOUTLINE or MONOCHROME)

If you do not like the default position and want to position the frame from the centre of the screen, change the values to:

local fontScaling = true

local x, y = 0, 0           -- x, y positioning (two numbers)
local anchorFrame = UIParent -- Frame to anchor Venge to
local frameAnchor = "CENTER"-- Position of the anchor frame to attach Venge to
local anchor = "CENTER"   -- Position of the Venge frame to anchor
local fontSize = 12         -- size of the font (one number)
local fontFlag = "OUTLINE"  -- font details (OUTLINE, THICKOUTLINE or MONOCHROME)

and simply adjust the x & y values as desired.