Problem rCmd - 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: Problem rCmd (
/showthread.php?tid=364435)
Problem rCmd -
_EviLTRicK_ - 30.07.2012
I have a problem with using rCmd!
The problem is that I set up a command /Test - :
PHP код:
rCmd[]->test(playerid) {
SendClientMessage(playerid, -1, "Test Command !");
return 1;
}
But on the server you can enter it like this /T And the command will work!
I want to you can enter it on the server just how I set
Tanks to helpers
Re: Problem rCmd -
_EviLTRicK_ - 30.07.2012
Up help please ?
Re: Problem rCmd -
iFizzy - 30.07.2012
rCmd sucks, use zcmd instead
https://sampforum.blast.hk/showthread.php?tid=91354
Here how to do it with zcmd
pawn Код:
CMD:test(playerid, params[])
{
SendClientMessage(playerid, -1, "Test command");
return 1;
}