Code for a WIP bot for running combat in an online session of The Gloaming Diaries
The code for the bot interaction is stored in /modules/bot
, while game related logic is stored in modules/game
To start up the bot, simply run python main.py
from the main project directory.
To run the bot, a secret key for the discord bot is needed in .env
, along the lines of
DISCORD_SECRET = "<secret here>"
To test the bot's backend, run pytest .\tests\gameTests.py -vv
from the root directory.