29.03.2018, 15:39
PHP код:
CMD:asay(playerid, params[])
{
new str[144]; //text max is 144 not 128
if(!IsPlayerAdmin(playerid)) return 0;
if(sscanf(params, "s[144]", params)) return SendClientMessage(playerid, -1, "/asay [message]"); //we can use params instead of making another str2[144]; //useless
format(string, sizeof(string),"Admin %s: %s", Name(playerid), params);
SendClientMessageToAll(-1, string);
return 1;
}