nemubot/modules/rnd.py

23 lines
464 B
Python
Raw Normal View History

2013-01-07 11:22:07 +00:00
# coding=utf-8
2014-08-27 23:39:31 +00:00
"""Help to make choice"""
2013-01-07 11:22:07 +00:00
import random
from nemubot.exception import IRCException
from nemubot.hooks import hook
2013-01-07 11:22:07 +00:00
2014-08-13 13:53:55 +00:00
nemubotversion = 3.4
2013-01-07 11:22:07 +00:00
from more import Response
2014-11-13 01:51:49 +00:00
@hook("cmd_hook", "choice")
2013-01-07 11:22:07 +00:00
def cmd_choice(msg):
if len(msg.cmds) > 1:
2014-11-13 01:51:49 +00:00
return Response(random.choice(msg.cmds[1:]),
channel=msg.channel,
nick=msg.nick)
else:
raise IRCException("indicate some terms to pick!")