需要一些有关使用 PERL 的 IRC BOTS 的信息
有谁知道有一款用 Perl 编写的好 irc 机器人吗?
我只需要一个简单的登录到该频道,然后根据用户所说的内容进行回复。
例如
用户:
<tgwizman> !time
机器人回复
<BlahBot> The time is 4:38:54 AM
Does any one know of a good irc bot written in perl?
I just need a simple one that logs on to said channel, then replies things based on what the user says.
e.g.
The user:
<tgwizman> !time
The bot replies
<BlahBot> The time is 4:38:54 AM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
上次我制作 IRC 机器人时,我使用了
AnyEvent::IRC::Client
。那里的示例可用于开始开发您自己的机器人。
Net::IRC
页面还建议了一些替代方案。Last time I made an IRC bot I used
AnyEvent::IRC::Client
. The example there can be used to start developing your own bot.Also
Net::IRC
page suggests some alternatives.Bot::BasicBot CPAN 发行版 包含多个示例机器人。 使用 POE 的项目页面包含基于 POE 的 IRC 机器人列表。另请参阅此处的答案:CHATBOT:使用 Perl 编程聊天机器人
Bot::BasicBot CPAN distribution contains several example bots. Projects Using POE page contains lists of POE-based IRC bots. See also answers here: CHATBOT: Programming a chatbot with Perl