Scoreboard

Results 1 to 5 of 5
  1. #1
    Account Upgraded | Title Enabled! Wish Q is offline
    MemberRank
    Jul 2012 Join Date
    LiveScoreLocation
    456Posts

    Scoreboard

    When i press tab i can see who is vip or staff left on the scoreboard.
    How to do it?

    like a tag [Staff]


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

    Re: Scoreboard

    Here: http://forum.ragezone.com/f245/name-tags-1-5-a-852383/

    Use search button next time please.

  3. #3
    Account Upgraded | Title Enabled! Wish Q is offline
    MemberRank
    Jul 2012 Join Date
    LiveScoreLocation
    456Posts

    Re: Scoreboard

    Quote Originally Posted by Patrick2607 View Post
    Here: http://forum.ragezone.com/f245/name-tags-1-5-a-852383/

    Use search button next time please.
    but where is the line? to do it in scoreboard?

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

    Re: Scoreboard

    ZCombatInterface.cpp (in my file at line 2470)

    Code:
    if(pCharacter->IsAdminName()) {
    			sprintf(pItem->szLevel,"--%s", ZMsg(MSG_CHARINFO_LEVELMARKER));
    			sprintf(pItem->szName,"[Admin]%s", pCharacter->GetUserName());
    			pItem->SetColor(ZCOLOR_ADMIN_NAME);
    		}
    		else if (pCharacter->IsDeveloperName()) {
    			sprintf(pItem->szLevel,"--%s", ZMsg(MSG_CHARINFO_LEVELMARKER));
    			sprintf(pItem->szName,"[Developer]%s", pCharacter->GetUserName());
    			pItem->SetColor(ZCOLOR_DEVELOPER_NAME);
    		}
    		else{
    			sprintf(pItem->szLevel,"%d%s",pCharacter->GetProperty()->nLevel, ZMsg(MSG_CHARINFO_LEVELMARKER));
    		}
    		
    		sprintf(pItem->szName,"%s", pCharacter->GetUserName());
    Like that.

  5. #5
    Account Upgraded | Title Enabled! Wish Q is offline
    MemberRank
    Jul 2012 Join Date
    LiveScoreLocation
    456Posts

    Re: Scoreboard

    Quote Originally Posted by Patrick2607 View Post
    ZCombatInterface.cpp (in my file at line 2470)

    Code:
    if(pCharacter->IsAdminName()) {
    			sprintf(pItem->szLevel,"--%s", ZMsg(MSG_CHARINFO_LEVELMARKER));
    			sprintf(pItem->szName,"[Admin]%s", pCharacter->GetUserName());
    			pItem->SetColor(ZCOLOR_ADMIN_NAME);
    		}
    		else if (pCharacter->IsDeveloperName()) {
    			sprintf(pItem->szLevel,"--%s", ZMsg(MSG_CHARINFO_LEVELMARKER));
    			sprintf(pItem->szName,"[Developer]%s", pCharacter->GetUserName());
    			pItem->SetColor(ZCOLOR_DEVELOPER_NAME);
    		}
    		else{
    			sprintf(pItem->szLevel,"%d%s",pCharacter->GetProperty()->nLevel, ZMsg(MSG_CHARINFO_LEVELMARKER));
    		}
    		
    		sprintf(pItem->szName,"%s", pCharacter->GetUserName());
    Like that.
    Thanks.



Advertisement