UltraxBlade's #febuilder-help FAQ

Units in my event aren’t loading, aren’t moving where I tell them to move, and/or have weird duplicates appearing when they move.

You’re probably missing an ENUN command after one of your move or load commands. ENUN is the command that tells the game to wait until units finish moving before continuing the event. If units start moving, or load in with a movement path, and the game tries to keep doing other things before they finish, weird things can happen and your events will not work. FEBuilder has an option for “move+ENUN” as one combined command, and similar for various loads, or you can put in ENUN by itself.

How do I make multiple units move at once in a cutscene?

So, this is basically the opposite of the above issue. You’re using Move+ENUN for each individual move, so the game waits for each individual move to finish before starting the next one. To move multiple units at once, put multiple Move commands in a row without ENUN, then put a single ENUN at the end. There is a limit of 4 units moving at once. Any more should begin moving after one of the previous ones stops, but can sometimes have issues, so it’s better to only move 4 at a time and put ENUNs in between.

6 Likes