Converting from ZCMD to Strcmp
#7

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;
}
Reply


Messages In This Thread
Converting from ZCMD to Strcmp - by Stanford - 24.03.2013, 06:36
Re: Converting from ZCMD to Strcmp - by Stanford - 24.03.2013, 06:52
Re: Converting from ZCMD to Strcmp - by mastermax7777 - 24.03.2013, 06:53
Re: Converting from ZCMD to Strcmp - by Stanford - 24.03.2013, 06:58
Re: Converting from ZCMD to Strcmp - by Stanford - 24.03.2013, 07:04
Re: Converting from ZCMD to Strcmp - by Stanford - 24.03.2013, 07:13
Re: Converting from ZCMD to Strcmp - by fireboy - 24.03.2013, 07:59
Re: Converting from ZCMD to Strcmp - by por12802 - 24.03.2013, 08:28
Re: Converting from ZCMD to Strcmp - by Yves - 24.03.2013, 08:34
Re: Converting from ZCMD to Strcmp - by raamiix - 24.03.2013, 08:50

Forum Jump:


Users browsing this thread: 1 Guest(s)