I'm looking through the source and I need some guidance on this part.
Does the [Admin] or [GM] Tag come before the name or after? Also, how can I make one for Lord and one for a player name.Code:if(m_dwAuthorization >= AUTH_GAMEMASTER)
{
CString strName;
strName = szName;
if(m_dwAuthorization >= AUTH_ADMINISTRATOR)
{
strName += " [Admin]";
}
else
{
strName += " [GM]";
}
strcpy( szName, (LPCTSTR)strName );
}
edit : I also need the hex codes for Orange and Cyan.

