05-15-2015, 05:26 PM
You can also follow the Umaro's route. Umaro has a hard-coded setting which forces him to automatically attack. The code begins at C2/091F . The relevant code is:
If you change from "BEQ $08C5" to "BRA $08C5", all characters will attack automatically with the fight command. Perhaps, you can adapt the condition which triggers the automatic fight command for your objective. However, i don't know which variable or flag can be used as a trigger...
Code:
C2/0923 BD D8 3E LDA $3ED8,X (Which character it is)
C2/0926 C9 0D CMP #$0D
C2/0928 F0 9B BEQ $08C5 (Exit if Umaro)
If you change from "BEQ $08C5" to "BRA $08C5", all characters will attack automatically with the fight command. Perhaps, you can adapt the condition which triggers the automatic fight command for your objective. However, i don't know which variable or flag can be used as a trigger...