您好, 我们想使用内部hubot,但不要让它工作,需要一些帮助。 我们在安装了snap的Ubuntu上安装了Rocket.Chat 0.61.0。 我们在“管理”设置下启用了内部Hubot。我们在快照安装中配置一个文件夹,并添加要加载的脚本。 在“查看日志”下,我们看到脚本已成功加载。 这是test.coffee脚本的一个示例
module.exports = (robot) ->
robot.respond /hello/i, (msg) ->
msg.send 'Hello World'
我尝试了/hello
或@rocket.cat /hello
但没有发生任何事情,或者只是“没有这样的命令:/hello
”
日志中没有错误或其他任何内容。 我们错过了什么?为什么我们不让内部hubot开始工作?
谢谢!
答案 0 :(得分:0)
I think you want to use robot.hear instead of robot.respond:
module.exports = (robot) ->
robot.hear /hello/i, (msg) ->
msg.send 'Hello World'