29.09.2010, 00:33
Check on your includes. If i'm not mistaken, i think zcmd has that defined.
Edit- Else try this
Just include a player name if you want
Edit- Else try this
pawn Код:
COMMAND:say(playerid, params[])
{
if(sscanf(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_RED, "Usage: /Say < Message >");
format(string, sizeof(string), "Me: %s", params);
SendClientMessageToAll(COLORHERE, string);
return 1;
}