WoW:API UnitAttackPower

From AddOn Studio
Revision as of 05:31, 4 January 2006 by WoWWiki>Muert
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