ZCMD Linux Problem - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Server (
https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (
https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: ZCMD Linux Problem (
/showthread.php?tid=446855)
ZCMD Linux Problem -
martoivanov - 27.06.2013
I started running my server on Linux and i use ZCMD to make commands. When someone types cmds like /credits, /plugins (they don't exist in my server!) the server crashes. There is nothing written in the server log. What can i do to stop this? It makes me a very big problem.
Thanks in advance!
PS When i remove the ZCMD commands the server works normally
Re: ZCMD Linux Problem -
SsHady - 27.06.2013
Show the ZCMD commands
on Which server get's crash
Re: ZCMD Linux Problem -
martoivanov - 27.06.2013
Here is an example
[pawno]
CMD:healme(playerid, params[])
{
if(Teled[playerid] == 1) return SendClientMessage(playerid,red,"balbablabllb!(/leavedm)");
GivePlayerMoney(playerid, -100);
SetPlayerHealth(playerid, 100);
SendClientMessage(playerid, 0xFFFF00AA, "blbalba!");
return 1;
}
[/pawno]