Relatively simple addon for my own use, recreates my Aloft nameplates but without all the extra gunk to make it take 2MB. It is unlikely that I'll be adding features or the ability to edit options in game.
Features
Lowfoot memory print (18kb)
Compact Frames
Name and Level text inside status bar
Level = level if unit HP is 100%, otherwise shows remaining HP
Custom Threat Highlighting (same as Aloft default override)
Stacking points text
Druids: Combo Points (cat), Lacerate (bear)
Warriors: Sunder Armor
Rogues: Combo Points
Bug Reports
Please direct all support requests to Wowace.
Be specific as to the version number of knameplates, revision (found in the TOC file), WoW version
Provide a complete stack trace from an addon like Bug Grabber
Customizing
No in game options
To change stuff edit the first few lines
local frameheight, framewidth = 11, 120
local agrocolors = {
[0] = { 1.00, 0.00, 0.00 }, -- "gray" equivalent (translate gray glow to red, the default hostile nameplate color; low aggro)
[1] = { 0.00, 1.00, 1.00 }, -- "yellow" equivalent (tranlate glow to a bright cyan; you are at risk of pulling/losing aggro)
[2] = { 1.00, 0.00, 1.00 }, -- "orange" equivalent (tranlate glow to a bright magenta; you are really close to pulling/losing aggro)
[3] = { 1.00, 0.67, 0.00 }, -- "red" equivalent (tranlate glow to a bright orange; this target is securely yours)
}
local barTexture = [[Interface\Addons\kNamePlates\media\Smoothv2]]
local glowTexture = [[Interface\Addons\kNamePlates\media\Outline]]
local font, fontSize, fontOutline = [[Interface\Addons\kNamePlates\media\Calibri1.ttf]], 9, "OUTLINE"
frameheight: the height of the healthbar
framewidth: the width of the healthbar
agrocolors table: r,g,b values in percent for a color, changes the agro outline coloring
bartexture: the statusbar texture to use
glowtexture: the agro border texture
font, fontSize, fontOutline: font face to use, size, what kind of outline to use |
|