01.10.2011, 16:28
Return 0 at the end of:
In all your scripts.
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/something", cmdtext, true, 10) == 0)
{
// Blah blah
return 1;
}
return 0;//here
}