28.10.2013, 23:39
Not sure If I miss something, you must use sscanf and zcmd
pawn Код:
CMD:announce(playerid, params[])
{
new string[90]
if(sscanf(params, "s[90]", string))
return SendClientMessage(playerid, -1, "Syntax: /announce [message]");
GameTextForAll(string, 3500, 3);
return true;
}