How to remove name tags in nationalgunz source?
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
replace with thisCode:case 255 : wsprintf(szText, "[Admin]%s : %s", szName , szChat); break;
I hope that's what you meant !!Code:case 255 : wsprintf(szText, "%s : %s", szName , szChat); break;
Thanks Tannus!