SA-MP Forums Archive
IRC !say not working. - 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 !say not working. (/showthread.php?tid=88076)



IRC !say not working. - Rhemsis - 24.07.2009

Recently my !say command in IRC has stopped transmitting a players message to the server. I haven't touched or edited the !say command [to my knowledge], and everything looks fine to me.

The bot still connects to the IRC channel and transmits all player messages and activity to IRC, just not messages FROM IRC.

Below is the !say command for IRC in my script, if anyone needs to see more just let me know and I will post it.

pawn Код:
irccmd_say(conn, channel[], user[], params[])
{
  if (!ircIsOp(conn,channel,user) && !ircHasVoice(conn,channel,user) && !ircIsHalfOp(conn,channel,user)) return false;
    printinfo
    new msg[112];
    format(msg,sizeof(msg), "%s(IRC) %s", user, params);
    SendClientMessageToAll(0x2587CEAA, msg);
    format(msg, sizeof(msg), "%s(IRC) %s", user, params);
    ircSay(conn, channel, msg);
    return true;
}




Re: IRC !say not working. - Rhemsis - 24.07.2009

Apologize for the double post, but it was an error in my IRC client, nothing to do with the script
Please delete this thread.