Python/C based builder and patching system for randomizing DK64 entirely within your browser.
Randomizer by 2dos, Ballaam and Killklli
Explore the docs »
Live Site
·
Dev Site
·
Report Bug/Features
·
Discord
Table of Contents
DK64 Randomizer is a simple to use web based application that can randomize and patch DK64 for you for a full featured adventure. The application is entirely browser based in the end. All python code is run within your browser itself requiring only a webserver to serve the files and a local prebuilt version of your BPS file to patch for the base.
Current Features:
- Randomizes the level order of DK64 (Hideout Helm always last)
- The level lobby entrances and exits are randomized and tied together
- Example: If Creepy Castle is level 1, then it only takes 1 GB to enter and 60 bananas to fight the boss under Vanilla rules
- Validation to ensure the seed is able to be beaten glitchless
- Unlock All Kongs must be turned on
- For logic purposes, in Galleon, the Peanut Popgun door that opens the sunken ship area is already opened
- Options to modify the length of the game (changes the B Locker and Troff n Scoff counts)
- Fully customizable B Locker and Troff n Scoff requirements per level
- Four presets for each: Vanilla, Steady, Half and Hell
- Option to unlock all kongs from the start
- Option to unlock all moves from the start
- Option to unlock the fairy camera and shockwave attack (fairy queen rewards) from the start
- Option to enable the Tag Anywhere hack
- Option for a fast Hideout Helm start
- Start in Blast-o-matic room in front of Gorilla Grab lever
- I-II-III-IV-V doors opened
- The gates in front of the music pads are gone
- Option to open the Crown door in Helm
- Option to open the Nintendo and Rareware Coin door
- Note that you cannot collect the DK Arcade GB with this option enabled, as the program simply adds the coins to your inventory
- Option to enable quality-of-life changes
- Removes first time text
- Removes most cutscenes (including GB dances)
- Removes first time boss cutscenes
- Remove DK Rap and extra cutscenes from startup
- Story skip set to "On" by default (not locked to on)
- Option for Fast Start
- Training Barrels complete
- Start with Simian Slam
- Spawn in DK Isles
- Japes Lobby entrance open
Generally if you want to just run the application locally, you can download a pre build package from our releases or go directly to the live site. If you want to build the application yourself and run it manually you can continue onto step two.
For the cases you want to build the app locally and run as a dev environment
- Clone the repo
git clone https://github.com/2dos/DK64-Randomizer.git
- Building the patch file
- Download
n64chain-windows.zip
from here - Extract to
C:\n64chain
- Add
C:\n64chain\tools\bin
to your system %path% environment variable - Install
Python 3
- Git clone (or download a zip + extract) this repo to somewhere convenient
- Put
dk64.z64
(SHA1: CF806FF2603640A748FCA5026DED28802F1F4A50) in the./base-hack/rom
subdirectory cd ./base-hack
- Run
build.bat
- Download
- Run Local Webserver
- Put
dk64.z64
(SHA1: CF806FF2603640A748FCA5026DED28802F1F4A50) in the main directory - Run:
sh python3 -m pip install -r ./requirements-dev.txt
- Run:
sh python3 ./NoCacheHTTPServer.py
- Open your internet browser and navigate to
localhost:8000
. You should now be looking at a locally hosted dk64randomizer site.
- Put
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request to Dev