WoW API: UnitRangedAttackPower

Revision as of 04:47, 15 August 2023 by Move page script (talk | contribs) (Move page script moved page API UnitRangedAttackPower to API UnitRangedAttackPower without leaving a redirect)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

WoW API < UnitRangedAttackPower

Returns the unit's ranged attack power and modifiers.

base, posBuff, negBuff = UnitRangedAttackPower("unit");

ParametersEdit

ArgumentsEdit

unit
String - The UnitId to get information from. (Likely only works for "player" and "pet")

ReturnsEdit

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)

ExampleEdit

local base, posBuff, negBuff = UnitRangedAttackPower("player");
local effective = base + posBuff + negBuff;
message("Your current ranged attack power: " .. effective);

ResultEdit

A message with your current ranged attack power is displayed.