Created
June 14, 2017 06:05
-
-
Save horie1024/ceb289155a85064dad1fbde785503c29 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = (robot) => { | |
robot.hear(/tech.vasily.jp/, (msg) => { | |
// 1つの画像を9つに分解しSlackに登録、botがSlackに投稿する際に以下のように並べる事で大きな画像にする | |
msg.send(":goto1::goto2::goto3:\n:goto4::goto5::goto6: < 序盤、中盤、終盤、スキがないと思います\n:goto7::goto8::goto9:"); | |
}); | |
robot.hear(/(馬鹿|バカ|ばか)に、?してい?るんですか/, (msg) => { | |
msg.send(":goto1::goto2::goto3:\n:goto4::goto5::goto6: < してないです!いい記事だなぁと思って、つい。\n:goto7::goto8::goto9:"); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment