WoW:API UnitAttackPower

From AddOn Studio
Revision as of 18:09, 23 December 2004 by WoWWiki>Flickering (First version)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
UnitAttackPower -Documentation by Flickering-
base, posBuff, negBuff = UnitAttackPower("unit");

Returns the unit's melee attack power and modifiers.


Arguments
("unit")
unit
String - The UnitId to get information from. (Does not work for "target" - Possibly only "player" and "pet")

Returns
base, posBuff, negBuff
base
Number - The unit's base attack power
posBuff
Number - The total effect of positive buffs to attack power.
negBuff
Number - The total effect of negative buffs to the attack power (a negative number)

Example
local base, posBuff, negBuff = UnitAttackPower("unit");
local effective = base + posBuff + negBuff;

Template:WoW API