Skip to content

Instantly share code, notes, and snippets.

@t3h2mas
Created June 13, 2014 07:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save t3h2mas/e01442cd665187b0a71f to your computer and use it in GitHub Desktop.
Save t3h2mas/e01442cd665187b0a71f to your computer and use it in GitHub Desktop.
var irc = require('irc');
var client = new irc.Client(
'irc.freenode.net',
'nodemotion',
{
channels: ['##blackhats']
}
);
client.on("message", function(from, to, message) {
if (message.indexOf(".version") > -1) {
console.log("[!] VERSION");
client.say(to, "VERSION .0000000001");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment