Name color in tab

Results 1 to 8 of 8
  1. #1
    Enthusiast Bombermanuse is offline
    MemberRank
    Apr 2013 Join Date
    33Posts

    Name color in tab

    Where I can show my name colors in TAB LIST?


  2. #2
    Account Upgraded | Title Enabled! Patrick2607 is offline
    MemberRank
    May 2013 Join Date
    The NetherlandsLocation
    345Posts

    Re: Name color in tab

    I thought it was in ZCombatInterface.cpp. Search for:
    Code:
    ZScoreBoardItem *pItem=new ZScoreBoardItem;
    Below that add stuff like this:
    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));
    }
    Goodluck!

  3. #3
    Alpha Member Chrisss is offline
    MemberRank
    Feb 2012 Join Date
    Ask the Fox!Location
    1,660Posts

    Re: Name color in tab

    ZColorTable.H
    #define ZCOLOR_ADMIN_NAME 0XFF0000

    change the 0XFF0000 to whatever color u want.

  4. #4
    Enthusiast Bombermanuse is offline
    MemberRank
    Apr 2013 Join Date
    33Posts

    Re: Name color in tab

    I want edit only in tab color

  5. #5
    Enthusiast Xerwell is offline
    MemberRank
    Jan 2013 Join Date
    41Posts

    Re: Name color in tab

    Quote Originally Posted by Bombermanuse View Post
    I want edit only in tab color
    When you press tab in chat ? or in game ?

  6. #6
    Enthusiast Bombermanuse is offline
    MemberRank
    Apr 2013 Join Date
    33Posts

  7. #7
    Account Upgraded | Title Enabled! Patrick2607 is offline
    MemberRank
    May 2013 Join Date
    The NetherlandsLocation
    345Posts

    Re: Name color in tab

    Yes, do what I said.

  8. #8
    Enthusiast Bombermanuse is offline
    MemberRank
    Apr 2013 Join Date
    33Posts

    Re: Name color in tab

    Thanks Patrick, i will try



Advertisement