Let's say you have a NPC in your city1 (a smaller npc or a tall one) and the kingdom flag is not fits.. so you must want to hide'it.
Open from client source:
Search for:
Add under "if (IsResource()) return;"
Just replace the "20406" for your npc vnum and compile.
Enjoy :)
Open from client source:
Code:
InstancebaseEffect.cpp
Code:
void CInstanceBase::__AttachEmpireEffect(DWORD eEmpire)
PHP Code:
DWORD vnum_my_npc = 20406;
if (GetRace() == vnum_my_npc)
return;
Enjoy :)