28.03.2011, 05:43
I have the code, TRYING to print an error message when no parameter is given by the user. But the Pawno compiler doesn't like this. Is there any other work around?
Код:
CMD:v(playerid, params[])
{
if(!params)
{
SendClientMessage(playerid, RED, "You did not input a parameter");
}
}

