24.03.2013, 07:59
you can do it manual, just change zcmd stuff to strcmp.
pawn Код:
CMD:command(playerid, params[])
{
SendClientMessage(playerid,RED,"yo");
return 1;
}
pawn Код:
if(strcmp(cmdtext, "/command", true) == 0)
{
SendClientMessage(playerid,RED,"yo");
return 1;
}

