[FE8] Forced Promotions [SOLVED]

Noob question here about FE8 Eventing if anyone happens to know the answer.

So, I’m messing with forced promotions and use this code to promote Eirika to a Great Lord using her Lunar Bracelet.

PROM 0x1 0x4 0x98

While this works and all, everything glitches up and I have no idea what to do about it. Would anybody happen to know the correct proceeding and preceding eventing offhand?

Apologies if this has a really simple solution, I looked at disassembled ch16e events, but nothing I did improved anything.

Okay, so Venno actually talked to me on skype and we figure it out. What you have to do is this:

FADI 16
_0x1020 0x4
_0x1A21
_0x2140 0x35 0x0 0x0
_0x1860 0x0 0x0 0x0 0x0 0x0
_0x1862 0xA06 0x0 0x200 0x200 0x200
PROM 0x1 0x4 0x98
FADI 16

If you have these events exactly, it fades into the promotion, then as soon as it finishes, it fades back to the map.

2 Likes

This will be useful thanks!

you should macro that

#define Promote(char, class, item) “FADI 16;
_0x1020 0x4;
_0x1A21;
_0x2140 0x35 0x0 0x0;
_0x1860 0x0 0x0 0x0 0x0 0x0;
_0x1862 0xA06 0x0 0x200 0x200 0x200;
PROM char class item;
FADI 16”

2 Likes

Here’s forced promotions with the latest version of EA, 10.0.1.

FADI 16
REMOVEPORTRAITS
PROM char class item
REMOVEPORTRAITS
FADU 16

Macro:

#define Promote(char, class, item) "FADI 16;
REMOVEPORTRAITS;
PROM char class item;
REMOVEPORTRAITS;
FADU 16"
5 Likes