WoW:API UnitRangedAttackPower: Difference between revisions
Jump to navigation
Jump to search
UnitRangedAttackPower -Documentation by geekgirljess-
No edit summary |
No edit summary |
||
Line 24: | Line 24: | ||
local base, posBuff, negBuff = UnitRangedAttackPower("player"); | local base, posBuff, negBuff = UnitRangedAttackPower("player"); | ||
local effective = base + posBuff + negBuff; | local effective = base + posBuff + negBuff; | ||
---- | ---- | ||
{{ | {{WoW API}} | ||
Revision as of 05:37, 4 January 2006
base, posBuff, negBuff = UnitRangedAttackPower("unit");
Returns the unit's ranged attack power and modifiers.
- Arguments
- ("unit")
- unit
- String - The UnitId to get information from. (Likely only works for "player" and "pet")
- Returns
- base, posBuff, negBuff
- base
- Number - The unit's base ranged attack power (seems to give a positive number even if no ranged weapon equipped)
- posBuff
- Number - The total effect of positive buffs to ranged attack power.
- negBuff
- Number - The total effect of negative buffs to the ranged attack power (a negative number)
- Example
local base, posBuff, negBuff = UnitRangedAttackPower("player"); local effective = base + posBuff + negBuff;