SA-MP Forums Archive
ZCMD - DCMD - STRCMP - 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 - DCMD - STRCMP (/showthread.php?tid=263819)



ZCMD - DCMD - STRCMP - euRo - 23.06.2011

Say now i have a script that uses mainly ZCMD

Can i add DCMD or even the old STRCMP (onplayercommandtext) commands without any issues?


Re: ZCMD - DCMD - STRCMP - SpiderWalk - 23.06.2011

Yes you can i have GM which using ZCMD and STRCMP.But above DCMD i think you can add it too


Re: ZCMD - DCMD - STRCMP - GangsTa_ - 23.06.2011

I'm not sure just because Zcmd uses other callbacks (or functions) such as:

pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
    return 1;
}
and

pawn Код:
public OnPlayerCommandReceived(playerid, cmdtext[])



Re: ZCMD - DCMD - STRCMP - SpiderWalk - 23.06.2011

Quote:
Originally Posted by GangsTa_
Посмотреть сообщение
I'm not sure just because Zcmd uses other callbacks (or functions) such as:

pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
    return 1;
}
and

pawn Код:
public OnPlayerCommandReceived(playerid, cmdtext[])
He can use ZCMD i have GM which using ZCMD too and no problems.