Skip to content

Instantly share code, notes, and snippets.

@tomharvey
Last active August 29, 2015 14:14
Show Gist options
  • Save tomharvey/72280c73967c64529f57 to your computer and use it in GitHub Desktop.
Save tomharvey/72280c73967c64529f57 to your computer and use it in GitHub Desktop.
+// 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