25.12.2013, 14:59
Are you sure strcmp
is harder
then ZCMD? Let's also include here that ZCMD is faster than strcmp.
pawn Код:
if(!strcmp(cmdtext, "/mycommand"))
{
SendClientMessage(playerid, 0xFFFFFFFF, "Hello Player!");
return 1;
}
pawn Код:
CMD:mycommand(playerid, params[])
{
return 1;
}