Hazukiwolfe Posted June 4, 2012 Share Posted June 4, 2012 ok so i like Farkas but i hate how he looks and everything so i wanted to change him to my liking Well i got the hair, eyes and face to work and everything else but the freaking outfit. i tried everything and even tried to follow this VVVVVVVVVVVVVVVhttp://forums.nexusmods.com/index.php?/topic/605633-linking-an-armor-mod-to-another-mod-without-esp-or-esm-master-tip-for-beginners/ but still i didnt get it to work.the outfit im trying to make work is one from here VVVVVVVVVVVVVVVBlack Tower and Black Sacrament Armor pack ---> http://skyrim.nexusmods.com/downloads/file.php?id=5696 i dont know what else im doing wrong but im hoping someone can help me. thank u Link to comment Share on other sites More sharing options...
gasti89 Posted June 4, 2012 Share Posted June 4, 2012 Can you describe a little better what's your problem? Purple texture?Black mesh?Invisible armor?CTD? Link to comment Share on other sites More sharing options...
Hazukiwolfe Posted June 4, 2012 Author Share Posted June 4, 2012 the armor is just not showing up in game he still has his old armor on in game no matter what i do Link to comment Share on other sites More sharing options...
Stemin Posted June 4, 2012 Share Posted June 4, 2012 I have no idea what the problem is, but I do know that all the companions that make up the circle are HEAVILY scripted, and that's probably part of the problem. Link to comment Share on other sites More sharing options...
Perraine Posted June 5, 2012 Share Posted June 5, 2012 Aela and Farkas are pretty much a write off when it comes to custom armor, because of a certain event that occurs with both of them, they will always revert to their original (vanilla Skyrim.esm) armor afterwards, And it doesn't seem to be fixable in any way ... There is some hidden script somewhere in Skyrim that we can't access even with the CK ... Link to comment Share on other sites More sharing options...
steve40 Posted June 5, 2012 Share Posted June 5, 2012 (edited) Farkas is referenced in 37 scripts. Code such as "obs.SetOutfit(FarkasOutfit)" in the example below forces his outfit: C01QuestScript: Reveal hidden contents Function ObserverTurnBack() if (Observer.GetActorReference().GetActorBase().GetRace() == WerewolfRace) Actor obs = Observer.GetActorReference() ; Debug.Trace("C01: Setting race " + __observerOriginalRace + " on " + obs) obs.SetRace(__observerOriginalRace) ; Remove the Transformation effect armor if they have it on. if (obs.GetItemCount(WolfSkinFXArmor) > 0) (obs.Removeitem(WolfSkinFXArmor,1,True,none)) endif __observerOriginalRace = None ObserverLycanStorage.GetReference().RemoveAllItems(Observer.GetActorReference()) if (obs == Aela) obs.SetOutfit(AelaOutfit) if (__observerWeaponWasBow) obs.AddItem(AelaBaseRangedWeapon, 1) obs.EquipItem(AelaBaseRangedWeapon) else obs.AddItem(AelaBaseMeleeWeapon, 1) obs.EquipItem(AelaBaseMeleeWeapon) endif elseif (obs == Farkas) obs.SetOutfit(FarkasOutfit) if (__observerWeaponWasBow) obs.AddItem(FarkasBaseRangedWeapon, 1) obs.EquipItem(FarkasBaseRangedWeapon) else obs.AddItem(FarkasBaseMeleeWeapon, 1) obs.EquipItem(FarkasBaseMeleeWeapon) endif endif endif Observer.GetActorReference().SetPlayerTeammate(true) EndFunction The outfit is set as a Property, so you could set the property to point to a different outfit. Edit: You're in luck, the above script appears to be the ONLY one that changes Farkas' outfit :thumbsup: Edited June 5, 2012 by steve40 Link to comment Share on other sites More sharing options...
Recommended Posts