22.02.2016, 00:48
Код:
#include <a_samp>
#if defined FILTERSCRIPT
public OnPlayerCommandText(playerid, cmdtext[])
{
if (!strcmp("/command", cmdtext, true) == 0)
{
SendClientMessage(playerid, COLOR_YELLOW,"It is Working");}
return 1;}
#endif
When I type /command I want it to bring up A message saying that the command is working (in yellow)
I get no errors.
I put it in the server.cfg

