14.06.2014, 09:52
Because the maximum number of cells that can be sent through SendClientMessage is 128. Alternatively, you can try sending the message on two lines, as it will get cut off if the string is too long.
And yes I did notice this when I was making the script, but your only option is:
And yes I did notice this when I was making the script, but your only option is:
pawn Код:
foreach(Player, i)
{
if(!PlayerInfo[i][pAdmin]) continue;
format(astr, sizeof(astr), "The Owner %s (%d) Has Made %s (%d)" ANAME, playerid, PNAME, giveplayerid);
SendClientMessage(i, 0xFF5900FF, astr);
format(astr, sizeof(astr), "An Admin Level {00FFFB}%d - %s{FF5900}.", level, Rank);
SendClientMessage(i, 0xFF5900FF, astr);
}