Skip to content

Instantly share code, notes, and snippets.

@tenten0213
Created November 6, 2013 06:27
Show Gist options
  • Save tenten0213/7331798 to your computer and use it in GitHub Desktop.
Save tenten0213/7331798 to your computer and use it in GitHub Desktop.
module.exports = (robot) ->
robot.hear /tired/, (msg) ->
robot.brain.data.count = 0 unless robot.brain.data.count
robot.brain.data.count += 1
robot.brain.save
if robot.brain.data.count < 3 then msg.send "Let's take a short break." else msg.send "You must take a break."
robot.hear /fine/, (msg) ->
robot.brain.data.count = 0
robot.brain.save
msg.send "Good."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment