Leodriz Posted March 2, 2022 Posted March 2, 2022 Hi, I've noticed there are mods that change body settings when equipping items. Like The rings that change breast size. Is it hard to make a mod like this and how would i go about it? I would like to modify Paragons Fay armor so the the hight of the characters that wears it decreases. A real pixie armor. Can anyone out there give me a tip on how this could be done?
Andy14 Posted March 2, 2022 Posted March 2, 2022 2 hours ago, Leodriz said: Hi, I've noticed there are mods that change body settings when equipping items. Like The rings that change breast size. Is it hard to make a mod like this and how would i go about it? I would like to modify Paragons Fay armor so the the hight of the characters that wears it decreases. A real pixie armor. Can anyone out there give me a tip on how this could be done? The SetScale and GetScale functions are available in OblectReference for this purpose. Note that the object reference must be the PC/NPC and not the armor. It has no effect on collision as long as the 3d reference is loaded. You can do it as an enchantment (easiest) or with equip/unequip events as a spell.
Leodriz Posted March 7, 2022 Author Posted March 7, 2022 Ok, thank you. I'll try this out Sorry for the late feedback, bad timing on my part since i went skiiing thursday morning ...
Leodriz Posted March 10, 2022 Author Posted March 10, 2022 I finally got time to dive into this and got it to work. I just added a script with an OnEuipped event to the armor. --------- Event OnEquipped(Actor akActor) akActor.SetScale(0.4) endEvent ---------- Now I just have to find a way to make the wearer large again when the armor is removed....
Leodriz Posted March 10, 2022 Author Posted March 10, 2022 Yeah, the On UnEquipped woked fine. Problem solved
Recommended Posts
Archived
This topic is now archived and is closed to further replies.