Created
November 23, 2011 21:20
-
-
Save chadmyers/1389955 to your computer and use it in GitHub Desktop.
BOD Hubot Coffee
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
# Allows Hubot to give a look of disapproval. | |
# | |
# bod <name> - gives back the character for the look of disapproval. | |
module.exports = (robot) -> | |
robot.respond /bod\s?(.*)/i, (msg) -> | |
user_msg = msg.match[1].trim() | |
response = 'ಠ_ಠ - ' + user_msg + '\n' + | |
'<|>\n' + | |
'/ω\\\n' | |
msg.send(response) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment