A beige notebook

My solo rpg oracle

Which also works as inspiration for creative fantasy writing.

This is what I do. I have a plain text file, called verses.txt. There I store selected quotes from books which I find inspiring, anything from three words to a paragraph.

There can be any number of quotes, but always one and only one quote per line.

Once I need to ask my oracle. I just choose 3 quotes at random, and interpret them as if they had come out of the mouth of a priestess of the Oracle.

And that's the whole thing and it does work quite well for me.

Tips

How to get your quotes quickly:

How to take them at random.

#!/usr/bin/env python3
import sys, os
from random import choice
with open("verses.txt", "r") as vf:
  print(choice(vf.readlines()))

Subscribe to my blog via Atom feed.