New module rnd to make choice

This commit is contained in:
Némunaire 2013-01-07 12:22:07 +01:00
parent 81db3de0df
commit dfa4c49d68

12
modules/rnd.py Normal file
View File

@ -0,0 +1,12 @@
# 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):
return Response(msg.sender, random.choice(msg.cmds[1:]), channel=msg.channel)