Skip to content

Instantly share code, notes, and snippets.

@fczuardi
Created September 12, 2010 04:29
Show Gist options
  • Select an option

  • Save fczuardi/575847 to your computer and use it in GitHub Desktop.

Select an option

Save fczuardi/575847 to your computer and use it in GitHub Desktop.
jerkenstein echo plugin
this.plugin = {
'name': 'echo'
,'pattern': /^\?echo (.+)$/
,'description': 'Repeat a message.'
,'example': '?echo Hello World.'
,'action': function(message) {
message.say(message.match_data[1])
}
,'url': 'http://gist.github.com/575847'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment