01.03.2014, 14:04
Hi,
I just made an admin chat command but it doesn't seem to work, for some reason. As I type in something in /ac nothing comes up in the chat, and I'm not sure why.
I hope you can help!
I just made an admin chat command but it doesn't seem to work, for some reason. As I type in something in /ac nothing comes up in the chat, and I'm not sure why.
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);
format(string, sizeof(string), "(( Admin %s: %s ))", GetPName(playerid), params);
foreach(Player, i){
if(PlayerInfo[playerid][Level] < 1) return SendClientMessage(playerid, 0xc3f8fd, string);
}
return 1;
}