12.04.2012, 08:43
Using this callback:
Instead of return 0; you put whatever you want. Example:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
return 0;
}
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
return SendClientMessage(playerid, -1, "This command does not exist. Use /help for a full list of commands.");
}