Quote:
Originally Posted by Jopsi332
Code:
BOOL TextCmd_System( CScanner & scanner )
{
#ifdef __WORLDSERVER
CHAR szString[512] = "";
CUser* pUser = (CUser*)scanner.dwValue;
CString strName;
strName = pUser->GetName();
scanner.GetLastFull();
if( strlen( scanner.token ) >= 512 )
return TRUE;
strcpy( szString, scanner.token );
StringTrimRight( szString );
g_DPCoreClient.SendSystem( "[" + strName + "]" + szString );
#endif // __WORLDSERVER
return TRUE;
}
credits: Cross
|
Quote:
Originally Posted by Velmore
cpp
|
i mean what name of .h or .ccp
i mean what name of .h or .ccp