09.10.2016, 23:08
Here's an example, but you obviously have to make it send the message to players:
pawn Код:
public OnPlayerCommandPerformed(playerid, cmd[], params[], success)
{
if(!success)
{
printf("The command /%s doesn't exist. Use /commands for a list of valid commands.", cmd);
}
return 1;
}


