07.11.2013, 09:55
Use this code
pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
new string[128];
if(!success)
{
format(string,sizeof(string),"ERROR: %s is Invalid Command!",cmdtext);
SendClientMessage(playerid,red,string);
}
return 1;
}