How to remove name tags in nationalgunz source?

Results 1 to 3 of 3
  1. #1
    Account Upgraded | Title Enabled! mgdmgd is offline
    MemberRank
    Jan 2012 Join Date
    305Posts

    How to remove name tags in nationalgunz source?

    How to remove name tags in nationalgunz source?


  2. #2
    Yaaay! Tannous is offline
    MemberRank
    Jul 2012 Join Date
    KonohaLocation
    840Posts

    Re: How to remove name tags in nationalgunz source?

    If you mean the tags such as [Admin]/[Developer], then look in these functions:
    ZGameClient::OnStageChat
    ZGameClient::OnChannelChat

    inside the ZGameClient.cpp file, to remove them just remove the tags, example
    Code:
    case 255 :
            wsprintf(szText, "[Admin]%s : %s", szName , szChat);
                break;
    replace with this
    Code:
    case 255 :
            wsprintf(szText, "%s : %s", szName , szChat);
                break;
    I hope that's what you meant !!

  3. #3
    Account Upgraded | Title Enabled! mgdmgd is offline
    MemberRank
    Jan 2012 Join Date
    305Posts

    Re: How to remove name tags in nationalgunz source?

    Thanks Tannus!



Advertisement