10.04.2010, 14:22
make sure you return 0
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
return 0;
}
/* Returning '0' is used to inform the server that the command
has not been successfully processed, and passes it to other scripts.
If there hasn't been a successful process, then you will get that
'SERVER: Unknown Command.' error.
*/