A downloadable game

Zombie Rush is a fast unpredictable fun runner game to cure your boredom!                       This game features zombies and dark forests which will you chase you and you have to escape them! Goodluck!

Published 4 days ago
StatusReleased
Authorninjaturtle.556
GenreAdventure
TagsRunner, Zombies

Download

Download
Zombie_Rush.zip 3.3 MB

Install instructions

Install instructions

Prerequisites:

To start your adventure in the dystopian world of Zombie Rush, you must first have Python installed on your machine. This game requires Python version 3.6 or later. If Python is not yet installed on your computer, you can download it from the official Python website: https://www.python.org/downloads/.

Step 1: Install Python

  1. Visit https://www.python.org/downloads/ and download the latest version of Python (make sure it's version 3.6 or higher).
  2. Run the downloaded installer. During the installation process, ensure to select the option "Add Python 3.x to PATH" to make Python accessible from the command line.
  3. After installation, open your command line interface (Command Prompt for Windows, Terminal for macOS and Linux) and type `python --version` to check the installation. You should see the installed Python version displayed.

Step 2: Install Pygame Zero

Pygame Zero (pgzero) is a simplified game development library aimed at beginners and educational environments. It makes creating games with Python much easier, which is ideal for our game, Zombie Rush.

Install Pygame Zero by executing the following command in your command line:

pip install pgzero

This command utilizes pip, the package installer for Python, to fetch and install the Pygame Zero library from the Python Package Index (PyPI).

Step 3: Download Zombie Rush

Now that you have Python and Pygame Zero ready, the next step is to download the Zombie Rush game files.

  1. Obtain the Zombie Rush game files from the provided download link. (Note: Add the actual link or instructions here based on your distribution method.)
  2. Extract the files from the downloaded ZIP archive to a directory of your choice. This directory will now contain all necessary files to run Zombie Rush.

Step 4: Launch the Game

To start Zombie Run, open your command line and change the directory to where you've extracted the game files. You can do this with the `cd` command, followed by the path to your game directory. For instance:

cd path/to/Zombie_Rush

Within the game's directory, start Zombie Rush by executing:

pgzrun main.py

Here, `main.py` refers to the primary script file for Zombie Rush, and `pgzrun` is a command from Pygame Zero to execute Pygame Zero games.

Once this is all done your good to go!