25.07.2014, 13:57
Quote:
pawn Код:
|
If you are using zcmd, you will use this:
pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
if(!success)
{
new str[256];
format(str, sizeof(str), "Command %s doesn't exists please /yourcommand for all commands", cmdtext);
SendClientMessage(playerid, -1, str);
}
return 1;
}