8 lines
312 B
Python
8 lines
312 B
Python
|
"""Ask the eight-ball a yes/no question, and it will give you a reasonable answer.
|
||
|
Usage: !eightball question"""
|
||
|
|
||
|
import random
|
||
|
|
||
|
def eightball(nick,channel,tenquestionmarks,question):
|
||
|
return tenquestionmarks.html("<b>Eightball:</b> %s" % (random.choice(tenquestionmarks.config()["eightball"]["responses"])))
|