01.03.2014, 15:22
It's the exact same command... people will learn to adjust...
I've already posted the working code in the other thread.
I've already posted the working code in the other thread.
pawn Код:
CMD:ac(playerid,params[])
{
if(PlayerInfo[playerid][Level] < 1) return SendClientMessage(playerid, 0xF69521AA, "You can't use this command!");
if(isnull(params)) return SendClientMessage(playerid, 0xF69521AA, "USAGE: /ac [message]");
new string[128];
if(PlayerInfo[playerid][Level] == 1) format(string, sizeof(string), " Moderator %s: %s", GetPName(playerid), params);
else format(string, sizeof(string), "Admin %s: %s", GetPName(playerid), params);
foreach(Player, i)
{
if(PlayerInfo[i][Level] < 1) continue;
SendClientMessage(i, 0xc3f8fd, string);
}
return 1;
}