zcmd help - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: zcmd help (
/showthread.php?tid=461902)
zcmd help -
Tomer!.$ - 04.09.2013
Well, I'd like to make a command /carcolor, but I also want people to be able to do /cc and it'll be the same command.
So how can I make a command using ZCMD, where people can type in /carcolor or /cc and it'll basically be the same command?
Re: zcmd help -
TonyII - 04.09.2013
pawn Код:
CMD:cc(playerid, params[])
{
return cmd_carcolor(playerid, params)
}
Re: zcmd help -
Tomer!.$ - 04.09.2013
thx.