Blue clan mark BUG !

Status
Not open for further replies.
Newbie Spellweaver
Joined
Apr 1, 2013
Messages
43
Reaction score
6
This probably won't show it even if you're in a clan. But search the code below and add the comments like I have and you should no longer see it.

Code:
    // CLAN TAG
/*    if(!NetworkLocal && hudMain)
    {
        if(m_ClanIcon.IsUndefined() && CGL.localPlayer_ && ClanID == CGL.localPlayer_->ClanID)
        {
            char plrUserName[256]; GetUserNameAndClanTag(plrUserName);
            hudMain->addClanTag(plrUserName, m_ClanIcon);
        }

        if(!m_ClanIcon.IsUndefined())
        {
            bool showTag = true;
            bool showName = (this->GetSafeID() == m_LocalPlayer_CurrentAimAt)?true:false;
            bool alwaysShow = true;

            if(bDead)
                showTag = false;

            hudMain->setUserIconTextVisible(m_ClanIcon, showName);
            hudMain->moveUserIcon(m_ClanIcon, GetPosition()+r3dPoint3D(0,2.0f,0), alwaysShow);
        }
    }*/
 
Upvote 0
Status
Not open for further replies.