ZCMD again... - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: ZCMD again... (
/showthread.php?tid=159526)
ZCMD again... -
GaGlets(R) - 13.07.2010
Hmm.. hello again..
Is it possible to make zcmd to work on 2 commands
Like
/report - dones the job
/re - the same job
but without making another zcmd..
Re: ZCMD again... -
Fj0rtizFredde - 13.07.2010
The only way I know is something like:
pawn Код:
command(re,playerid, params[])
{
return cmd_report(playerid, params);
}
Re: ZCMD again... -
GaGlets(R) - 13.07.2010
Ohh thanx..
Edit:
Not working...
Im using CMD:cmd(playerid,params[]) scripting style..
Re: ZCMD again... -
Fj0rtizFredde - 13.07.2010
Try this then:
pawn Код:
CMD:re(playerid, params[])
{
return cmd_report(playerid, params);
}
Re: ZCMD again... -
GaGlets(R) - 13.07.2010
Nope, tried already.... Error: Invalid balbalbla...
Re: ZCMD again... -
GaGlets(R) - 14.07.2010
Anyone? Need... pls..
Sor for dubled post..
Re: ZCMD again... -
MadeMan - 14.07.2010
What errors do you get?