18 lines
397 B
Python
18 lines
397 B
Python
import re
|
|
import random
|
|
|
|
from util import hook
|
|
|
|
|
|
@hook.command
|
|
def choose(inp):
|
|
"""choose <choice1>, [choice2], [choice3], [choice4], ... --
|
|
Randomly picks one of the given choices."""
|
|
|
|
c = re.findall(r'([^,]+)', inp)
|
|
if len(c) == 1:
|
|
c = re.findall(r'(\S+)', inp)
|
|
if len(c) == 1:
|
|
return 'The decision is up to you!'
|
|
|
|
return random.choice(c).strip()
|