Gudulba Posted February 23 Posted February 23 In the mod Dark Arena during a certain quest, a dancer outfit is placed into the PC's inventory and removed again at the end of the quest. The outfit points to a single ARMO/ARMA entry/mesh (see screenshot in spoiler section), which is a single skirt with a seemingly built-in body preset (it changes my PC's body preset on equipping). I would like to replace this outfit with an outfit of my choice (consisting of several outfit parts (shoes, skirt, top etc.) built in BodySlide). What is the easist way to do this? As the outfit is automatically placed in the inventory, is there maybe also a script involved? If yes, is there a way to avoid tampering with the script? Spoiler
traison Posted February 23 Posted February 23 It might be possible to add items in a quest alias, but usually it's done with a script: ;Armor Property DancerOutfit Auto ; Sigle-part outfit Armor[] Property DancerOutfit Auto ; Multi-part outfit Actor Property PlayerRef Auto ; ... ;PlayerRef.AddItem(DancerOutfit, 1, true) ; Single-part outfit ; Multi-part outfit int i = DancerOutfit.Length While (i > 0) i -= 1 PlayerRef.AddItem(DancerOutfit[i], 1, true) EndWhile
Gudulba Posted February 27 Author Posted February 27 Thank you for your input! As I am not versed in scripting things, I have looked for other solutions and it seems I found one: I have added several ARMA entries to the ARMO entry and also added the corresponding body slot numbers. Seems to work so far. Spoiler
traison Posted February 27 Posted February 27 (edited) Ah I misunderstood your definition of "outfit" - I was thinking these were distinct ARMO entities. Yes, as long as you're always either wearing them all or none of them, then adding them as ARMA records like you did is one approach. Could merge them into one nif too, using Outfit Studio: Open Outfit Studio from the bottom right corner of BS. File -> Load Reference... File -> Import -> From NIF... (all the parts) Ctrl + C -> OK Test sliders. Swap #2 and #3 if they don't work. Save As Give the project a name, and tell it where the armor should be built. Close OS and BS. Restart BS. Test sliders. Build if everything is fine. Edit: And if your parts that you want to merge already contain a body mesh or parts you don't want, then use OS to export these into nifs. Personally I think I'd export everything to a temporary folder on my desktop, regardless of if there's unwanted meshes in these mashup parts. Easier to import later; easier to work with if things go wrong with some part. Edited February 27 by traison 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now