Skip to content

Instantly share code, notes, and snippets.

@kypkyp
Created December 24, 2016 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kypkyp/b5d619bbbd800fe6ed4207aa31934fa9 to your computer and use it in GitHub Desktop.
Save kypkyp/b5d619bbbd800fe6ed4207aa31934fa9 to your computer and use it in GitHub Desktop.
へんすう
controller.hears(['@[0-9a-z_]+'], 'direct_message,direct_mention,mention,ambient', function(bot, message) {
if(message.channel === "C2Z3UJWAW"){
var mentionedID = message.text.match(/@[0-9a-z_]+/);
var ansstr = mentionedID + " そうだよ";
bot.say({
channel:"C2Z3UJWAW",
text:ansstr,
username:"BOT",
icon_url:"https://i.gyazo.com/f3e1776ca8cbde6644df9fe04bcbf05a.jpg"
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment