Zeroing/nullifying mov FEDS style (based on AI parameters?)

I remember when I tried something like that they all shared the same palette. If I remember correctly, the minimug padges are also uncompressed. I might be mistaken, it’s been a long time since I’ve looked into it.

What if you brought the mug down so that it fits within the hackbox and inserted it over Nils’ or Nino’s mug slot so that in the stat screen it gets pushed up? And then just call a separate mug for dialogue scenes. I’m sure it wouldn’t be hard to locate the byte responsible for pushing up mugs.

I converted this zero-move display patch into EA event format (for FE8):
Here it is.

Dunno if anyone’s made this conversion before but I couldn’t find any.

1 Like

It’s part of SkillSystem but iirc it uses the statgetters so you couldn’t use it standalone.

Is it normal that Oneil in the prologue is still shown as a moving enemy even before the AI change?

Cool, glad my efforts were not totally put to waste.

As for O’Neill, that’s normal. His AI settings don’t include 0x20 in AI4 so he is not considered stationary for the purposes of displaying MOV.

Since enemies that can be recruited seem to retain their AI, and if the recruitable enemy has AI4 as 0x20, this results in player units that can’t move. Is there any other workaround for this besides not setting 0x20 in AI4? Afaik with FEB you can’t change AI4.

One can change AI4 in the recruitment event tho?

Which command is that? If you use Change AI of character [AI1], AI2],AI3],AI4], it doesn’t allow you to leave AI4 as 0, your command turns into Change AI of character [AI1],AI2], and setting a number like 1 for AI4 doesn’t seem to do anything. Is there something I’m missing?

Tequila has a patch that makes AI3 and AI4 changeable with CHAI but I don’t think FEBuilder has it.

I’m able to do it in Builder using the “Set Unit Status” patch to directly change AI3 and AI4.

Say I have a boss who starts off stationary, and I want his move to be nullified. I’ll inital set his AI
parameters as shown below.
image

If I view Vincent on the map, it will show him having no move, and he won’t attacks unless a unit
is adjacent.

But, after several turns, I want Vincent to begin pursuing the player. I make the following happen in
an event:

The first two commands are from the “Change unit status” patch in Builder. As I understand it, these allow you to directly change a unit’s status in RAM through an event. Here, 0x40 and 0x41 are the
relevant statuses, as they are AI3 and AI4. I set them to change to 0x4 and 0x0, respectively,
as this turns off the “Boss AI” for AI3 and AI4.

Following that, I use a change AI command to change Vincent’s AI1 and AI2 to what is desired,
pretty standard.

Now, Vincent’s AI is changed in behavior, AND he now displays his move, where he previously
didn’t. Hope this helps!

2 Likes

That did the trick, thanks for your help!

1 Like