01.02.2012, 09:25
You need to return 1 at the end of every command.
pawn Код:
public OnPlayerCommandText(...)
{
if(strcmp(...))
{
// Command code
return 1;
}
return 0;
}