This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/fortune.py
2012-04-20 08:56:06 +12:00

18 lines
361 B
Python
Executable file

from util import hook
import re
import random
fortunes = []
with open("plugins/data/fortunes.txt") as f:
for line in f.readlines():
if line.startswith("//"):
continue
fortunes.append(line.strip())
@hook.command(autohelp=False)
def fortune(inp):
".fortune -- Fortune cookies on demand."
return random.choice(fortunes)