I had looked into the script for the "bhn200ar_castle_after_siege.nss" file. I believe this portion of codes corresponds to the Teyrna's equiptment.Correct me if I'm wrong. Assuming I have already done these 2 tasks to the "bhn100cr_mother.utc" file on DA Toolset:- equip the outfit you want for the pre-siege sequence - add the second set of items to her inventory in a 'non-equipped' state. If I simply replace the lines of her default outfits with the modded file names, do you think that will work? For Example:File names for the mod outfits are:1. ferelden_noble.uti to replace her noble outfit ie. GEN_IM_CTH_NOB_AF0.2. onho_cth.uti to replace her studed leather armor ie. GEN_IM_ARM_CHT_LGT_RLR. From(Original Codes):object oMother = UT_GetNearestCreatureByTag(oPC,BHN_CR_MOTHER);object oMotherGloves = GetItemPossessedBy(oMother,GEN_IM_ARM_GLV_LGT_RLR);object oMotherBoots = GetItemPossessedBy(oMother,GEN_IM_ARM_BOT_LGT_RLR);object oMotherArmour = GetItemPossessedBy(oMother,GEN_IM_ARM_CHT_LGT_RLR); UT_RemoveItemFromInventory(rGEN_IM_CTH_NOB_AF0,1,oMother);EquipItem(oMother,oMotherArmour,INVENTORY_SLOT_CHEST);EquipItem(oMother,oMotherBoots,INVENTORY_SLOT_BOOTS);EquipItem(oMother,oMotherGloves,INVENTORY_SLOT_GLOVES); Change To(Modified):object oMother = UT_GetNearestCreatureByTag(oPC,BHN_CR_MOTHER);object oMotherGloves = GetItemPossessedBy(oMother,GEN_IM_ARM_GLV_LGT_RLR); -> line unchanged (Chest piece will supersede the entire look of the outfit)object oMotherBoots = GetItemPossessedBy(oMother,GEN_IM_ARM_BOT_LGT_RLR); -> line unchanged (Chest piece will supersede the entire look of the outfit)object oMotherArmour = GetItemPossessedBy(oMother,onho_cth); -> change chestpiece to the Orlesian noble hunting outfit(Mod). UT_RemoveItemFromInventory(rferelden_noble,1,oMother); -> removes her equipped Ferelden Noble outfit(Mod).EquipItem(oMother,oMotherArmour,INVENTORY_SLOT_CHEST);EquipItem(oMother,oMotherBoots,INVENTORY_SLOT_BOOTS);EquipItem(oMother,oMotherGloves,INVENTORY_SLOT_GLOVES);