How do I add a tag to a specific name?
This is the function that they use.
void CInstanceBase::UpdateTextTailLevel(DWORD level)
{
static D3DXCOLOR s_kLevelColor = D3DXCOLOR(152.0f/255.0f, 255.0f/255.0f, 51.0f/255.0f, 1.0f);
char szText[256];
if (IsGameMaster())
{
if(name_player=="*********")
sprintf(szText, "[********* [Lv] %d", level);
else
sprintf(szText, "Nivel %d", level);
}
return;
CPythonTextTail::Instance().AttachLevel(GetVirtual ID(), szText, s_kLevelColor);
}
What is the variable that memorizes the name of the player?
I do not think I can use the cstring functions.
Example: if(strcmp(player_var,"*********")==0)
I apologize for expression. i speak english very bad.






