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=430053)
ZCMD Help !! -
Giroud12 - 12.04.2013
Where to put ZCMD and how to load it to server?
Re: ZCMD Help !! -
Pottus - 12.04.2013
Place zcmd.inc in your pawno\include folder then put this in your script
Код:
#include <zcmd>
// Template command structure
CMD:mycommand(playerid, arg[])
{
return 1;
}
Re: ZCMD Help !! -
Xoomer - 12.04.2013
https://sampforum.blast.hk/showthread.php?tid=319000
check this
Re: ZCMD Help !! -
Giroud12 - 12.04.2013
What i need to put in server.cfg?
Re: ZCMD Help !! -
Denying - 12.04.2013
Nothing, ZCMD doesn't require you to add it into your server.cfg, it is neither a plugin nor a filterscript/gamemode.
Re: ZCMD Help !! -
Private200 - 12.04.2013
No need to add it on "server.cfg". You have to put it in your "pawno/includes" folder.