17.05.2016, 06:14
ok i made a command and anytime someone uses it they command works but still send the player "SERVER:Unknown Command" error please help me out.
by the way its an /Ask command.
As you can see the command is executed but still get the error.
rep+ if help
by the way its an /Ask command.
As you can see the command is executed but still get the error.
pawn Код:
CMD:ask(playerid, params[])
{
new Message[200];
if(!sscanf(params, "s[200]",Message))
{
format(astring, sizeof(astring), "Question: %s(%d) asked: %s", GetName(playerid), playerid, Message);
SendToAdmins(green,astring);
SendClientMessage(playerid, COLOR_GREEN, "Your Question has been sent to online Administrator(s)");
}
}