Where I can show my name colors in TAB LIST?
Printable View
Where I can show my name colors in TAB LIST?
I thought it was in ZCombatInterface.cpp. Search for:
Below that add stuff like this:Code:ZScoreBoardItem *pItem=new ZScoreBoardItem;
Goodluck!Code:if(pCharacter->IsAdminName()) {
sprintf(pItem->szLevel,"--%s", ZMsg(MSG_CHARINFO_LEVELMARKER));
pItem->SetColor(ZCOLOR_ADMIN_NAME);
}
else if (pCharacter->IsDeveloperName()) {
sprintf(pItem->szLevel,"--%s", ZMsg(MSG_CHARINFO_LEVELMARKER));
pItem->SetColor(ZCOLOR_DEVELOPER_NAME);
}
else{
sprintf(pItem->szLevel,"%d%s",pCharacter->GetProperty()->nLevel, ZMsg(MSG_CHARINFO_LEVELMARKER));
}
ZColorTable.H
#define ZCOLOR_ADMIN_NAME 0XFF0000
change the 0XFF0000 to whatever color u want.
I want edit only in tab color
Yes, do what I said.
Thanks Patrick, i will try