Exemplo n.º 1
0
 def enhanoxbot(info,usrs,chan):
     """ponder food"""
     word1 = randwords.get_random_word('foods')
     word2 = randwords.get_random_word('foods')
     if word1.endswith("s"):
         phrase = "I wonder if %s go with %s..." % (word1, word2)
     else:
        phrase = "I wonder if %s goes with %s..." % (word1, word2)
     say(phrase, chan)
Exemplo n.º 2
0
 def jobebot(info,usrs,chan):
     """misread stuff"""
     word1 = randwords.get_random_word('words')
     word2 = randwords.get_random_word('words')
     say("I read %s as %s" % (word1, word2), chan)