SA-MP Forums Archive
DCMD to 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)
+--- Thread: DCMD to ZCMD (/showthread.php?tid=487795)



DCMD to ZCMD - AnonScripter - 15.01.2014

how to make this on ZCMD ??

pawn Код:
dcmd_whisper(playerid,params[]) return dcmd_w(playerid,params);



Re: DCMD to ZCMD - Excelize - 15.01.2014

There are about 500 tutorials and threads on this. Here's one;

https://sampforum.blast.hk/showthread.php?tid=231496


Re: DCMD to ZCMD - AnonScripter - 15.01.2014

nothing working
pawn Код:
CMD:w(playerid, params[]) return CMD:whisper(playerid, params[]);



Re: DCMD to ZCMD - Excelize - 15.01.2014

Код:
CMD:whisper(playerid, params[])
{
    //Your code
}
CMD:w(playerid, params[])
{
     return CMD:w(playerid, params[]);
}
That should work.


AW: DCMD to ZCMD - BigETI - 15.01.2014

pawn Код:
CMD:whisper(playerid, params[]) return cmd_w(playerid, params);
...


Re: DCMD to ZCMD - AnonScripter - 15.01.2014

thank you all