Created
November 6, 2013 06:27
-
-
Save tenten0213/7331798 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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