10.03.2012, 13:10
You are missing the starting bracket of the CMD:mask(playerid, params[]) scope.
Also, if you want to stop the user from actually going further on with the command if they aren't authorized, you need to stop the code processing by adding a return.
pawn Код:
CMD:mask(playerid, params[])
{
// ...
return true;
}