Skip to content

Instantly share code, notes, and snippets.

@IQAndreas
Created December 16, 2014 00:53
Show Gist options
  • Save IQAndreas/71cb1f6ee0150c2e4954 to your computer and use it in GitHub Desktop.
Save IQAndreas/71cb1f6ee0150c2e4954 to your computer and use it in GitHub Desktop.
Hubot script to help the user if they tried to exit the chat room using the wrong command.
// Alerts the user if they typed one of the following (with our without a preceeding backslash)
// exit
// quit
module.exports = (robot) ->
robot.respond /([^:]+): \\?(exit|quit)/i, (msg) ->
user = msg.match[1]
msg.send("#{user}: Try /exit")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment