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-03-26 21:59:02 +13:00

18 lines
345 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
def fortune(inp):
".fortune -- Fortune cookies on demand."
return random.choice(fortunes)