WoW:API UnitRangedAttack: Difference between revisions
Jump to navigation
Jump to search
({{wowapi}}, format) |
m (Move page script moved page API UnitRangedAttack to API UnitRangedAttack without leaving a redirect) |
||
| (One intermediate revision by one other user not shown) | |||
| Line 14: | Line 14: | ||
message(effective); | message(effective); | ||
===Result=== | ===Result=== | ||
Displays a message containing your effective ranged attack skill( | Displays a message containing your effective ranged attack skill([[Weapon Skill]]). | ||
Latest revision as of 04:47, 15 August 2023
Returns the unit's ranged attack and modifier.
base, modifier = UnitRangedAttack("unit");
Parameters
Arguments
- unit
- String - The UnitId to get information from. (Likely only works for "player" and "pet")
Returns
- 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
local base, modifier = UnitRangedAttack("player");
local effective = base + modifier;
message(effective);
Result
Displays a message containing your effective ranged attack skill(Weapon Skill).