WoW API: UnitInRange

From AddOn Studio
Jump to navigation Jump to search

WoW API < UnitInRange

Returns 1 if the unit is in range of most helpful spells (40yds) and in a group / raid with you, otherwise nil.

isTrue = UnitInRange("unit")

Arguments[edit]

unit
String - unitId to check.

Returns[edit]

isTrue
1 or nil

Example[edit]

if UnitInRange("target") then
    print(UnitName("target") .. " is 40 yds away.")
else
    print(UnitName("target") .. " is not in range!")
end

Result[edit]

FarfarawayDPS is 40 yds away.
FarfarawayDPS is not in range!

Details[edit]

Returns 'false' for any unit not in party or raid.
Will return nil for hostile units.

See also[edit]