-1
我想爲hubot的未知命令調用hubot幫助。我如何從另一個命令如hubot測試中調用hubot幫助。因爲我使用外部腳本文件的hubot幫助。我無法在其中添加robot.on。我怎樣才能做到這一點?從其他命令調用hubot幫助
我想爲hubot的未知命令調用hubot幫助。我如何從另一個命令如hubot測試中調用hubot幫助。因爲我使用外部腳本文件的hubot幫助。我無法在其中添加robot.on。我怎樣才能做到這一點?從其他命令調用hubot幫助
我無法找到確切的解決方案。但下面的解決方法獲得幫助命令工作
helpCommands = robot.helpCommands() + '';
test = helpCommands.split(',');
for j in test
msg.send "#{j}"