23.10.2014, 06:58
Here if you only want to make them appear in console.
pawn Код:
#include zcmd
public OnPlayerText(playerid, text[])
{
printf("Text:%s Says: %s",pName, text);
return 1;
}
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
printf("CMD: %s Used: %s",pName,cmdtext);
return 1;
}