add help for a bunch of modules

This commit is contained in:
mutantmonkey
2013-10-05 16:20:37 -07:00
parent 6606bf18ad
commit 256592b79f
12 changed files with 45 additions and 22 deletions

View File

@@ -9,6 +9,8 @@ import random
otherbot = "truncatedcone"
def botfight(phenny, input):
""".botfight - Fight the other bot in the channel."""
messages = ["hits %s", "punches %s", "kicks %s", "hits %s with a rubber hose", "stabs %s with a clean kitchen knife"]
response = random.choice(messages)
@@ -17,6 +19,8 @@ botfight.commands = ['botfight']
botfight.priority = 'low'
def bothug(phenny, input):
""".bothug - Hug the other bot in the channel."""
phenny.do("hugs %s" % otherbot)
bothug.commands = ['bothug']
bothug.priority = 'low'