Problem is, we have no idea how to make this happen. Is there a way to set faces on the fly without opening up the showracemenu?
If not, we'll have to think of something else, but it would be very useful if we could get this working.
Scriptname PCKP_FaceShiftScript extends activemagiceffect event OnEffectStart(Actor Target, Actor Caster)int HeadPartsN = TargetB.GetNumHeadParts()int i = 0ActorBase CasterB = Caster.GetActorBase()ActorBase TargetB = Target.GetActorBase() while i <= HeadPartsNif TargetB.GetNthHeadPart(i)CasterB.SetNthHeadPart(TargetB.GetNthHeadPart(i), i)CasterB.SetFaceMorph(TargetB.GetFaceMorph(i), i)endIfi=i+1endWhileCasterB.SetWeight(TargetB.GetWeight())CasterB.SetHairColor(TargetB.GetHairColor())endEvent