0

我希望我们的 Hubot 管理某些 IRC 频道的主题。当我让 hubot 发送“/TOPIC #channel New Topic”时,该文本刚刚在频道中结束。

我知道我可以为 IRC 主题更改(如irc-topic.coffee)添加一个监听器:

robot.adapter.bot.addListener 'topic', (channel, topic) ->

但是是否有设置主题的界面或强制hubot-irc 适配器发送原始 IRC 命令的方法?

4

1 回答 1

0

https://github.com/nandub/hubot-irc/blob/master/src/irc.coffee#L40

看起来你只是设置了监听器然后topic = "thing the topic should be"

于 2015-09-17T14:16:01.163 回答