This is an Unofficial Web Port of the free Ren'Py game TADC VN 1ST DAY (aka The Amazing Digital Circus Visual Novel Fangame) (1.0) by allhailthequeenuwu. This port allows the game to be played directly in a web browser without needing any downloads/installations.
There are 2 methods:
Go to https://nick088official.github.io/TADC-VN-1ST-DAY-Web-Port/renpy/
- Click Code -> Download ZIP -> Extract the Zip.
- Get Python installed and added to your system's PATH.
- Open a CMD/Terminal inside the renpy project folder (I manually renamed the folder for a shorter url for github pages and to not confuse with the README.md file).
- Run the following command to start a simple web server:
python -m http.server
- Open your web browser and go to the following address: http://localhost:8000/
This guide provides step-by-step instructions for building a web version of the game.
- Get the Game Files: Download the original game from the creator's itch.io page and extract the files.
- Ren'Py: Having Ren'Py installed, I used version 8.4.1 specifically.
- Python (for running): Having Python installed and added to your system's PATH, to run the local web server.
- Open Ren'Py -> Preferences -> General -> Select a Projects Directory.
- Put the Game Files inside your Projects Directory, then refresh projects.
- Select the Game project, then click Web, and Build Web Application.
- Inside your Projects Directory, you will have another project folder with the same name but with "-dists" at the end, and inside of it, a folder with the same name but with "-web" at the end.
You need to run them using a local web server. Simply opening the index.html file directly will not work due to browser security restrictions.
- Open a CMD/Terminal inside the "-web" project folder.
- Run the following command to start a simple web server:
python -m http.server
3 Open your web browser and go to the following address: http://localhost:8000/
The game should now start and be fully playable.
This is only for people who are going to use GitHub Pages, which automatically uses Jekyll to build static blog websites. The issue is that Jekyll ignores files that start with '_', which some of the game assets do, so we will not use Jekyll.
- In the root project folder, add an emtpy file named
.nojekyll.
For pure educational purposes, fun, and to make this game accessible on more platforms.
- Game: All credit for the game's creation goes to allhailthequeenuwu. Please support the original creator by visiting the official itch.io page.
- Web Port: This web-based version was ported by Nick088.
- Game Engine: Ren'Py, specifically used version 8.4.1 to build it at this time.