SA-MP Forums Archive
IRC Admin Chat - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: IRC Admin Chat (/showthread.php?tid=245712)



IRC Admin Chat - Julian12345 - 01.04.2011

Hello.

I've a problem with the IRC Admin Chat.

I want to show the admin chat on the IRC Channel. This is the code:

pawn Код:
forward SendClientMessageToHops(botid, channel[], user[], host[], params[],string[]);

public SendClientMessageToHops(botid, channel[], user[], host[], params[],string[])
{
    {
        {
            if (IRC_IsHalfop(botid, channel, user))
            {
                IRC_GroupSay(gGroupID, channel, string);
            }
        }
    }
    return 1;
}


SendClientMessageToHops(gGroupID, msg);
No errors, but it doesn't show the Admin Chat on IRC.

Anybody can help?