I love Zelda !!!!
Find a file
2025-11-24 21:46:10 -08:00
all bosses no eg clean up abnoeg glitches 2024-01-27 10:36:54 -08:00
enemies dash to skull woods 2020-07-28 23:32:45 -07:00
glitches 100% RMG 2025-11-24 21:44:04 -08:00
images moth hitbox 2021-06-15 18:52:21 -07:00
misc Create capacity_fairy.md 2025-11-09 18:16:31 -08:00
mod_stuff/timing Update README.md 2025-01-22 17:31:24 -08:00
rooms lanmo 2024-08-25 11:38:16 -07:00
routes i moved this 2025-11-24 21:46:10 -08:00
src_guides_archive fixins 2024-04-22 21:46:03 -07:00
tools py3 compare_times.py 2024-07-21 10:37:09 -07:00
.gitattributes Initial commit 2020-06-21 19:20:15 -07:00
.gitignore miscellany 2021-05-21 14:18:14 -07:00
5 dungeons RMG.txt some stuff including pokeys 2 2020-06-21 21:53:33 -07:00
Bingo goals.txt some stuff including pokeys 2 2020-06-21 21:53:33 -07:00
getting_started.md formatting & snipping time on getting started 2025-06-13 16:42:55 -07:00
legend.md formatting 2020-07-28 23:48:19 -07:00
LICENSE adding cc-by license 2020-07-11 16:07:24 -07:00
malibuken_early_tempered.txt some stuff including pokeys 2 2020-06-21 21:53:33 -07:00
my_todos.md TODO gh pages 2024-06-29 21:54:48 -07:00
NG+.txt some stuff including pokeys 2 2020-06-21 21:53:33 -07:00
README.md readme tweak 2024-01-27 10:03:11 -08:00
resources_and_tutorials.md PB reviews died 2025-04-07 11:37:01 -07:00

What This Is

The project is to have a text-based dump of everything I know about A Link to the Past. I acknowledge that this is unlikely to ever materialize, but I think it will be fun and useful to do anyway. This is inspired in part by Gwern's approach to a web of living essays.

Why

Well, I need notes for myself, so why not upload them?

Additionally, text-based information on this game is terribly lacking. I could edit the wiki, but it turns out that the pressure of writing something that matches my internal bar of "good enough for the wiki" prevents me from writing anything at all.

There is a vast amount of information out there, including in my own head, that exists only in video form and/or discord chatlogs. Videos are great for some things but incredibly inefficient in many ways. Also I just don't really like learning from videos. So the idea is to have a place for text explainers.

The Process

Right now, the process is that I will write a page whenever I feel like doing so, up to whatever quality standard I feel inspired to reach that day. If you have anything you want me to write up, please ask me and I will probably do it.

At some point I would like to organize the info better. Maybe I'll reach a point where I have a build process that fixes up links and images and shit. Maybe it'll just be a mess of markdown forever. No promises.

You can contribute by writing up a page of your own and providing a PR. Assuming it is correct and legible I will probably accept it; completeness is not required.

Making Images/GIFs

Mostly, I've been doing a brief recording in OBS, trimming the video to size using the built-in Photos app on windows, chopping out the overlay stuff using VLC, and converting to gif on ezgif.com. This suuuuuuuuuucks but I don't feel like writing software for windows OR WSL, and tooling sucks, so whatever.

VLC steps:

  1. Go to Media -> Convert/Save
  2. Select the relevant file
  3. Click "Convert/Save" or select Convert from the little dropdown on that button
  4. Select the "gameplay-from-stream-recording" conversion profile. Its settings:
  5. Encapsulation: mp4/mov
  6. Video codec: mp4, 9k bitrate, filters "video cropping filter" checked
  7. The "video cropping filter" parameters are set by going to "tools" -> "Preferences" -> selecting "all" in the bottom left, finding "video -> filters -> croppadd" and setting the values to: * top: 10 * bottom: 12 * left: 13 * right: 497
  8. Then select a destination file and do the conversion.

ezgif steps:

  1. Go to ezgif.com
  2. Select Video to GIF (this is default option anyway it looks like)
  3. Upload the video file VLC output
  4. The trim should already be right
  5. Size: 480xAUTO seems good
  6. Frame rate: 20. 25 does not divide 30 so there's no point.

ffmpeg steps:

  1. given a bunch of images from, e.g., bizhawk screencaps:
  2. something like ffmpeg -i up/%02d.png -vf palettegen -y up_palette.png to generate a palette
  3. something like ffmpeg -v debug -framerate 4 -i up/%02d.png -i up_palette.png -lavfi paletteuse -y up_slash.gif to generate the actual gif