29.02.2012, 21:25
Well i cannot script IRC, try doing this
pawn Код:
// Echo the formatted message
if(!IRC_IsAdmin(botid,channel,user))
{
format(msg, sizeof(msg), "02*** %s on IRC: %s", user, params);
IRC_GroupSay(gGroupID, channel, msg);
format(msg, sizeof(msg), "*** %s on IRC: %s", user, params);
SendClientMessageToAll(0xffffffff, msg);
}
else if (IRC_IsAdmin(botid, channel, user))
{
format(msg, sizeof(msg), "*** Admin %s on IRC: %s", user, params);
SendClientMessageToAll(0xffffffff, msg);
}