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.
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.