downtime.py 618 B

1234567891011121314151617
  1. import time
  2. from datetime import datetime, timedelta
  3. import random
  4. from util import commands, parse_line
  5. @commands(".downtime")
  6. def _downtime(bot, message, channel):
  7. drinks = ['a beer', 'a scotch', 'a bloody mary', 'a nice glass of wine', 'FUCKIN FOUR LOKO', 'a crisp cider']
  8. action_string = "\001ACTION "
  9. user = parse_line(message).user
  10. if user.lower() == "george" or "thorogood" in user.lower():
  11. bot.say(channel, action_string + ' gets ' + user + ' one bourbon, one scotch, one beer'+ "\001\n")
  12. else:
  13. bot.say(channel, action_string + ' gets ' + user + ' ' + random.choice(drinks)+ "\001\n")