Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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.
Back
Top