Wikia

WoWWiki

Watchlist Recent changes

API IsReferAFriendLinked

Main Menue



Determines whether the given unit is linked to the player via the Recruit-A-Friend feature.

isLinked = IsReferAFriendLinked("unit")

Arguments Edit

unit 
String (UnitId) - Unit to query information about.

Returns Edit

isLinked 
Flag : 1 if the unit is RAF-linked to the player, nil otherwise.

Example Edit

function HasRecruitAFriendBonus()
    local numPartyMembers = GetNumPartyMembers();
    if numPartyMembers > 0 then
        local memberID = 1;
        while memberID <= numPartyMembers do
            if GetPartyMember(memberID) == 1 then
                local member = "party" .. memberID;
                if UnitIsVisible(member) and IsReferAFriendLinked(member) then
                    return true;
                end
            end
            memberID = memberID + 1;
        end
    end
    return false;
end

Pages on WoWWiki

95,750pages on
this wiki
Advertisement | Your ad here

Latest Photos

Add a Photo
58,025photos on this wiki
See more >

Recent Wiki Activity

See more >

Recent Questions

Around Wikia's network

Random Wiki