diff --git a/plugins/Translators/plugin.py b/plugins/Translators/plugin.py index d6f7b0e..7424783 100644 --- a/plugins/Translators/plugin.py +++ b/plugins/Translators/plugin.py @@ -432,6 +432,15 @@ def baconator(self, irc, msg, args): pass irc.reply(' '.join(words)) + def oprah(self, irc, msg, args): + """Give stuff away like Oprah""" + if len(args) == 0: + irc.reply("No favorite things to give away today!") + return + thing = ' '.join(args) + irc.reply('YOU get %s! And YOU get %s! And YOU get %s! EVERYONE GETS %s!' % (thing, thing, thing, thing.upper()), prefixNick=False) + + Class = Translators