Man, you really messed up your game, huh. I don't think I can help with that one, I have no idea how you even managed to get it to that state.
My best guess would be to remove every piece of clothing and then equip the ones that set those images that are stuck. IE, remove everything and equip the magic circles, scythe and gag. Equipping other things in those slots could also work, it doesn't seem like the code has space for multiple items in the same slot, so it might override what's there.
If that doesn't work, you could try adding the following to the end of the file I sent you previously. It'll add a new tab of cheats to the menu with some attempts at fixing the problem. Obviously, none of this is tested, back up any save you'll be running this on. Also, run them in order - top to bottom - as these get progressively more aggressive.
If that still doesn't work, send me your sa[v]e so I can try some different things.
JavaScript:
Cheat_Menu.menus[Cheat_Menu.menus.length] = function () {
let cheatKey = 4;
let cheatNum = 0;
Cheat_Menu.append_cheat_title("Potential Clothing Fixes");
Cheat_Menu.append_cheat(`reload actor`, "Activate", cheatKey++, function () {
$wb.reloadActor();
SoundManager.playSystemSound(1);
});
Cheat_Menu.append_cheat(
`Load shape file`,
"Activate",
cheatKey++,
function () {
$wf.loadShapeFile();
SoundManager.playSystemSound(1);
}
);
Cheat_Menu.append_cheat(
`Unequip all clothes`,
"Activate",
cheatKey++,
function () {
$w.mustUnEquipAllClothes();
SoundManager.playSystemSound(1);
}
);
Cheat_Menu.append_cheat(
`Unequip all clothes - forced`,
"Activate",
cheatKey++,
function () {
$w.mustUnEquipAllClothes(true);
SoundManager.playSystemSound(1);
}
);
Cheat_Menu.append_cheat(
`Remove body lock`,
"Activate",
cheatKey++,
function () {
$wb.lockBody(0);
SoundManager.playSystemSound(1);
}
);
};