I\'m on learning ruby and I took a already done IRC-Bot from the web which just connects to a given serven and not much more.
I set up an RCS server (hybrid ircd). I would like to secure it with authentication. But my user credentials are stored in a database table.
I run my bot in a public channel with hundreds of users. Yesterday a person came in and just abused it.
Now I have my bot to send message when the bot joins. However how do I make a form that would post data so that the bot will say the message to the channel?
Here is my script: $ircServer = \"\"; $ircPort = \"6667\"; $ircChannel = \"#\"; set_time_limit(0); $ircSocket = fsockopen($ircServer, $ircPort, $eN, $eS);
For some reason my bot wont private message a % of people on the IRC Channel. Here is my script: <?php
I\'m writing python code for IRC client. I want to understand how IRC client and server communicating each other.
I\'ve created an IRC bot in Python from scratch just for the fun of it. I\'ve got a way to load modules into it, but you have to manually type out the code to load each module as below:
I\'m writing a script that will print a random line of text from a file into an XCHAT channel.So far it works fine, but I want to add one last bit of functionality.
Hey guys, I\'m having a few issues with using PCRE to make a irc nickname format correctly. I\'m not good with PCRE, and I\'d love some suggestions from those of you who do use PCRE / regex. :)