Skip to content

Instantly share code, notes, and snippets.

@wixo
Created September 6, 2013 21:40
Show Gist options
  • Save wixo/6470341 to your computer and use it in GitHub Desktop.
Save wixo/6470341 to your computer and use it in GitHub Desktop.
# Description:
# Lisp Drinking Game
#
# Configuration:
# None
#
# Commands:
# None
#
# Author:
# wxo
# Max number of lisp mentions
MAX_LISP_MENTIONS = 1
module.exports = (robot) ->
robot.hear /lisp/i, (msg) ->
name = msg.message.user.name
user = robot.brain.userForName name
if typeof user is 'object'
user.puercopop_mentions ||= 0
user.puercopop_mentions += 1
if user.puercopop_mentions >= MAX_LISP_MENTIONS
user.puercopop_mentions = 0
msg.send "*drink*"
@PuercoPop
Copy link

@ivoscc You are Drunk!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment