Dinopony / alundra-randomizer

A randomizer for the PS1 game Alundra
MIT License
12 stars 1 forks source link

Fix Nirude being broken on game start #18

Closed Dinopony closed 2 years ago

Dinopony commented 2 years ago

In order to activate Torla geysers, we had to set two different flags on game start. It happens that Flag(0xD34F, 5); is actually the flag marking Nirude as broken, and is also required for Torla geysers to work.

We need to use a debugger to find the check responsible for the geysers, and redirect it to a flag that is always true / negate the instruction so that geysers are always on. This way, we'll be able to remove the flag being set on game start.

Dinopony commented 2 years ago

While testing this, also find the flag for Nirude lower boulder that should go away for logic's sake

Dinopony commented 2 years ago

Removed boulder in bd003d7