Skip to content

Instantly share code, notes, and snippets.

@sizovs
Created July 2, 2017 18:17
Show Gist options
  • Save sizovs/841c35dd500db053fa4cce9ab7db0d8b to your computer and use it in GitHub Desktop.
Save sizovs/841c35dd500db053fa4cce9ab7db0d8b to your computer and use it in GitHub Desktop.
module.exports = controller => {
controller.hears(['^say (.*)','^say'], 'direct_mention', (bot, message) => {
const thingToSay = message.match[1];
if (thingToSay) {
bot.reply(message, thingToSay);
} else {
bot.reply(message, 'I will repeat whatever you say.')
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment