WoW:API IsActionInRange: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
Line 13: Line 13:


:;inRange : Flag - nil if the slot has no action or if there is no current target. 0 if the action is out of range, and 1 if the action is in range. Note that it always returns 1 if range does not apply to this action  or if you can't use the spell on the target.
:;inRange : Flag - nil if the slot has no action or if there is no current target. 0 if the action is out of range, and 1 if the action is in range. Note that it always returns 1 if range does not apply to this action  or if you can't use the spell on the target.
== Note ==
If you need more performance than target switching and checking with IsActionInRange provides then check out [[API_CheckInteractDistance|CheckInteractDistance]]. It has certain limits and will not work for all ranges, but it is several orders of magnitude faster than target switching/scanning.


----
----
{{template:WoW API}}
{{template:WoW API}}

Revision as of 06:12, 11 August 2006

IsActionInRange - Documentation by Flickering

Test whether an action is in range for use.

inRange = IsActionInRange(actionSlot)

Parameters

Arguments

(actionSlot)
actionSlot
Numeric - The action slot to test.

Returns

inRange
inRange
Flag - nil if the slot has no action or if there is no current target. 0 if the action is out of range, and 1 if the action is in range. Note that it always returns 1 if range does not apply to this action or if you can't use the spell on the target.

Note

If you need more performance than target switching and checking with IsActionInRange provides then check out CheckInteractDistance. It has certain limits and will not work for all ranges, but it is several orders of magnitude faster than target switching/scanning.


Template:WoW API