Earlier Versions
Name | Size | Uploaded | Game Version | Downloads | |
Venge 1.3 release | 63.36 KB | Nov 27, 2014 | 6.0.3 | 3,803 | ![]() |
Venge 1.2 release | 63.18 KB | Oct 16, 2014 | 6.0.2 | 979 | ![]() |
Venge 1.1 release | 63.17 KB | Sep 26, 2014 | 5.4.8 | 309 | ![]() |
Venge release | 62.79 KB | Sep 20, 2014 | 5.4.8 | 175 | ![]() |
Screenshots
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.
Add a comment