Last active
August 29, 2015 14:14
-
-
Save tomharvey/72280c73967c64529f57 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
+// Description: | |
+// Gives you a Tom style motivation | |
+// | |
+// Dependencies: | |
+// None | |
+// | |
+// Configuration: | |
+// None | |
+// | |
+// Commands: | |
+// ofb tom (motivation|me) - Tom shows up to motivate you | |
+// | |
+// Author: | |
+// Mar | |
+ | |
+var main = function(robot) { | |
+ robot.respond(/(tom\s?motivation|tom|tom\s?me)/i, function(msg) { | |
+ msg.reply("http://s1.postimg.org/cdxvo0tan/poster.jpg"); | |
+ }); | |
+}; | |
+ | |
+module.exports = main; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment