Changing to Bard/Clown turns into Dancer/Gypsy

bWolfie

I'm the man
Messages
850
Points
0
Location
Alberta, Midgard
Github
bWolfie
Emulator
I have a problem where changing by any means from an Archer to a Bard or High Archer to Clown causes you to change to the female version (but with a male head).

screenBlackoutTest002.jpgscreenBlackoutTest003.jpg

Other than the @job command, I also tried this script - same result.

amatsu,246,244,3    script    job test    4_M_BIBI,{
    .@name$ = "[Job Master]";
 
    if (Class == Job_Archer) {
        mes .@name$;
        mes "Change to Bard?";
        next;
        switch(select("Yes:No")) {
            case 1:
                close2;
                jobchange Job_Bard;
                end;
            break;
                
            case 2:
                close;
            break;
        }
    } else {
        end;
    }
}


My constants.conf is normal. Why is this happening?

 
Did you check the grf? Maybe you switched the body sprites

 
Back
Top