Skip to content

Running The Game

Cromha edited this page Jan 4, 2024 · 12 revisions

Running the game is very simple, you just need to install required modules and run the game through the command line!

Step-By-Step

  1. Clone the repository
  2. Open up your usual terminal (if you never used any terminal, bro really?)
  3. Download all required python modules
  4. Make sure all python scripts are executable (for safety)
  5. Run the map.py script

Bash Shell

git clone git@github.com:Dungeons-of-Kathallion/Bane-Of-Wargs.git
cd Bane-Of-Wargs/
pip install -r requirements.txt
chmod +x main.py battle.py colors.py train.py check_yaml.py map_item.py
python main.py

or alternatively

git clone git@github.com:Dungeons-of-Kathallion/Bane-Of-Wargs.git
cd Bane-Of-Wargs/
pip3 install -r requirements.txt
chmod +x main.py battle.py colors.py train.py check_yaml.py map_item.py
python3 main.py

If you have any problems, check the full documentation on how to run the game fron nothing at docs/PLAYING.MD.

Clone this wiki locally