Unkown Command - 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: Unkown Command (
/showthread.php?tid=660777)
Unkown Command -
MustangMapping - 13.11.2018
Hey guys, how can I make this mistake to stay: Unkown Command I want to replace it with the wrong command. My mod have inc
Re: Unkown Command -
AmirSavand - 13.11.2018
If you're using ZCMD:
PHP код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
if (!success)
{
SendClientMessage(playerid, COLOR_RED, "Hey you enterred a wrong command");
}
return 1;
}