Skip to content

Instantly share code, notes, and snippets.

@comfuture
Created April 13, 2011 08:38
Show Gist options
  • Save comfuture/917203 to your computer and use it in GitHub Desktop.
Save comfuture/917203 to your computer and use it in GitHub Desktop.
say hello to ircian bot
exports.plugin = function(bot) {
bot.on('join', function(chan, nick) {
if (nick == 'ircian') {
bot.talk(chan, [[
nick + ':나가!',
nick + ':나가지마!',
nick + ':안녕',
nick + ':메롱'
]]);
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment