SA-MP Forums Archive
[Help] Zcmd .. - 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: [Help] Zcmd .. (/showthread.php?tid=189046)



[Help] Zcmd .. - Maor1122 - 10.11.2010

How can i do this ?
PHP код:
CMD:TakePizzaFromBike(playerid,params[]) || CMD:TPFB(playerid,params[]) 



Re: [Help] Zcmd .. - Tee - 10.11.2010

That works with strcmp, i dont think it works with ZCMD, but there is a way to do it, i just dont remember. Sorry


Re: [Help] Zcmd .. - legodude - 10.11.2010

make for the second cmd a return wich returns the first cmd


Re: [Help] Zcmd .. - Maor1122 - 10.11.2010

I found nothing, You can show me how ?


Re: [Help] Zcmd .. - Lenny the Cup - 10.11.2010

pawn Код:
CMD:first(playerid, params[])
{
     your stuff;
}
CMD:second(playerid, params[])
{
     return CMD:first(playerid, params);
}