- Know Archipelago.
- Download the apworld.
- Place the apworld into
Archipelago/custom_worlds/
. - Generate a multiworld, and host the game either locally or on the website.
- Download the latest Visual Studio C++ Redist.
- Download the (for now) required build of Zelda64Recomp:
- Download the mods, as well as
apconnect.txt
. - Place the mods within the zip into the Zelda64Recomp mods folder.
- If on Windows, this is located at
%LOCALAPPDATA%\Zelda64Recompiled\mods
. - If on Linux, this is located at
~/.config/Zelda64Recompiled/mods
.
- If on Windows, this is located at
- If you like, you can add a texture pack.
- Download both
.7z
files from one of the.rtz
links in Darío's PR. - Unzip the file ending in .001, and place the resulting
.rtz
in your mods folder.
- Download both
- You can also download poptracker along with Seto's pack
- Place
apconnect.txt
next toZelda64Recompiled.exe
, and fill it out with your server connection information.- MAKE SURE it is NOT named
apconnect.txt.txt
.
- MAKE SURE it is NOT named
- Open
Zelda64Recompiled.exe
, select your ROM, and hit Start Game. - Go nuts.
Make sure you have a file named "apconnect.txt" (without the quotes) in the same folder as the exe, and that it contains the correct connection information for your Archipelago server slot.
Try moving your cursor to the Letter to Kafei and pressing the N64's L button. That should cycle through all quest items in that slot. That's true for the Moon's Tear item slot and the Room Key item slot as well.
The phantom AP item means the check is not yet implemented. Please use a text client or Seto's amazing poptracker pack from step 6 to see checks that you can definitely get (though some implemented checks may be missing until the tracker is updated).
Otherwise, here is a list of unimplemented checks:
- Tingle
- Oceanside Gold Skulltulas
- Shop Items
- Moon Children Trials Heart Pieces
- Snowhead/Great Bay/Ikana
Thank you to the original authors of some of the other recomp mods used!
- danielryb (Better SoDT, Z-Target Fix)
- ThatOneHypedPerson (Color Mods)
See this document for an explanation of the modding framework, including how to write function patches and perform interop between different mods.
You'll need to install clang
and make
to build rando.
- On Windows, using chocolatey to install both is recommended. The packages are
llvm
andmake
respectively. - On MacOS, these can both be installed using Homebrew, as well as
zip
. Apple clang won't work, as you need a mips target for building the mod code. - On Linux, install the above packages, and some additional ones:
clang
,make
,llvm
,lld
,zip
, using your distro's package manager.
You'll also need to build N64Recomp for the RecompModTool
and OfflineModRecomp
utilities.
- First, run
make offline
(with an optional job count) to build the mod code itself. - Oops, all done.