WoW API: UnitRangedAttack

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

WoW API < UnitRangedAttack

Returns the unit's ranged attack and modifier.

base, modifier = UnitRangedAttack("unit");

Parameters[edit]

Arguments[edit]

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

Returns[edit]

base
Number - The unit's base ranged attack number (0 if no ranged weapon is equipped)
modifier
Number - The total effect of all modifiers (positive and negative) to ranged attack.

Example[edit]

local base, modifier = UnitRangedAttack("player");
local effective = base + modifier;
message(effective);

Result[edit]

Displays a message containing your effective ranged attack skill(Weapon Skill).