22.09.2009, 18:51
Код:
irccmd_ann(conn, channel[], user[], message[])
{
new tmp[256];
tmp = zcmd(1, message);
if(ircIsOp(conn, channel, user) == 0) return ircSay(conn, channel, "You are not a channel admin");
if(strlen(tmp) == 0) return ircSay(conn, channel, "You did not put in a msg");
new string[256];
format(string, sizeof(string), "%s", message[6]);
GameTextForAll(string, 5000, 3);
return 1;
}

