how to remove clan mark from the normal player??
Printable View
how to remove clan mark from the normal player??
Same issue!
Same its annoying can't find it anywhere
this is werid problem... how to fix it?
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);
}
}*/
what the result of this code? close clan system or just delete mark ?
Commenting out that code will just remove the blue mark in-game.
thank a lot.