-
Notifications
You must be signed in to change notification settings - Fork 48
Common Hacking Questions
This page contains answers to various questions and obstacles I anticipate hackers (new and old) to come across while hacking Oracle of Ages or Seasons.
Due to the number of hard-coded events in the Oracles, the solutions to many of these problems will involve hex editing.
ZOLE 4 is the primary editor for Oracle of Ages and Seasons. The latest version is called "ZOLE 4.5 Update 3", which has a nicer interface than Lin's last release of ZOLE 4 and fixes some bugs. (TODO: link)
Although it is recommended to use ZOLE for now, the plan is to replace it with LynnaLab when it is ready. LynnaLab works by editing the Oracle of Ages disassembly. It is considerably more complicated to set up, but it will be considerably more powerful (and less prone to corruption).
Seasons is not as well supported as Ages. In ZOLE, certain features are missing from Seasons, such as editing "static objects" (minecarts).
There is no disassembly of Seasons yet. As such, LynnaLab does not yet support Seasons at all, and this wiki is lacking in additional Seasons documentation. It is highly recommended to use Ages for now.
Make sure that you opened a US version of Ages or Seasons. European and Japanese versions are not supported.
Maps $f0-$f5
(inclusive) in the past overworld (and past underwater) are unused because their room flags are used to remember the 6 vine sprout positions. As such, moving a vine will also change the room flags in those rooms, which can mess up your scripts.
Even if you're not using vines, their initial positions can still mess up your scripts. You can fix this by going to address $129e8
in your ROM and changing these 6 bytes all to 00:
41 22 16 35 18 53
You can also edit these to other values to change the initial positions of the vines (although changing their rooms is more complicated, since most vine behaviour is hardcoded with "map scripts", as ZOLE calls them.)