Skip to content

Instantly share code, notes, and snippets.

@donpdonp
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save donpdonp/11305154 to your computer and use it in GitHub Desktop.
Save donpdonp/11305154 to your computer and use it in GitHub Desktop.
function (payload) {
if(payload.type == "emessage") {
var weather = /\!weather/
var match = weather.exec(payload.message)
if(match) {
if(Math.random() > 0.7) {
return payload.nick+": you got a window? open it."
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment