Silly question: Is there any way to disable the Super Trainee unlock after completing both Eirika and Ephraim routes?
Thanks in advance.
Silly question: Is there any way to disable the Super Trainee unlock after completing both Eirika and Ephraim routes?
Thanks in advance.
There’s a function here that you could make return false/0 in r0 pretty easily
Address of function listed here
https://fireemblemuniverse.github.io/fireemblem8u/symbols.txt
Just a quick clarification for those who may be interested. The function is found at 080ccca4 and can be modified easily with the FEB Disassembler. Once you find it, change the highlighted line to #0x0 from the original value of #0x0E. (that’s how I did it at least, this can probably be done just as easily with HxD)
This seems to have worked well enough for me, if anyone has any issues to report, feel free to post.
You could also do something like this, I think
PUSH
ORG $ccca4
SHORT $2000 // mov r0, #0
SHORT $4770 // bx lr
POP