26.02.2011, 10:56
You shouldn't do your commands (ZCMD) under OnPlayerCommandText() callback.
Place it in the bottom of your script.
So it's like this:
Place it in the bottom of your script.
So it's like this:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
return 0;
}
COMMAND:something(playerid, params[])
{
return 1;
}