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).
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?
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).
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?
Share this post
Link to post
Share on other sites