WoW:API UnitRangedAttack: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 23: Line 23:
  local base, modifier = UnitRangedAttack("player");
  local base, modifier = UnitRangedAttack("player");
  local effective = base + modifier;
  local effective = base + modifier;


----
----
{{Template:WoW API}}
{{WoW API}}
[[Category:API Unit Functions|UnitRangedAttack]]

Revision as of 05:36, 4 January 2006

UnitRangedAttack -Documentation by geekgirljess-
base, modifier = UnitRangedAttack("unit");

Returns the unit's ranged attack and modifier.


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

Returns
base, modifier
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;



Template:WoW API