# coding=utf-8 import random nemubotversion = 3.3 def load(context): from hooks import Hook add_hook("cmd_hook", Hook(cmd_choice, "choice")) def cmd_choice(msg): if len(msg.cmds) > 1: return Response(msg.sender, random.choice(msg.cmds[1:]), channel=msg.channel, nick=msg.nick) else: raise IRCException("indicate some terms to pick!")