25.11.2016, 08:24
PHP код:
public OnPlayerCommandReceived(playerid, cmdtext[])
{
if(strlen(cmdtext) > YOUR_MAX_LENGTH)
{
SendClientMessage(playerid, COLORERROR, "The command you entered is too long.");
return 0;
}
return 1;
}