Tiziano74 Posted March 23 Share Posted March 23 Hi all I'm looking for a way to add, via script, the Additional Race for children to a specific ArmorAddon. I found the AddSlotToMask function, which allows you to add a slot (at least I think, I haven't tried it), but not an Additional Race. In the list of papyrus functions I also found MakeChildRace, but I can't find any information on how this function works and I don't even know if it's suitable for ArmorAddons. Does anyone have any suggestions? Thanks in advance to those who will answer! Link to comment Share on other sites More sharing options...
PeterMartyr Posted March 24 Share Posted March 24 Short story: Nope, make a patch Reveal hidden contents Long story: there a two Race Getters in the ArmorAddon Script, but no Setters, so it it is not mutable with scripts, make a patch BTW I successfully ported a Skyrim Follower I made to Enderal, so I have ridden in this rodeo before, and held on for 8 sec. It work fine after I fix the Races in the Armor Addon's, and I did it with the Kit in 2016 and in 2025 nothing changed 1 Link to comment Share on other sites More sharing options...
dylbill Posted Monday at 10:27 AM Share Posted Monday at 10:27 AM Hey, coincidentally I was working on similar functions for my script resource Dylbill's Papyrus Functions, so adding that wasn't too much trouble. Relevent functions in DbSkseFunctions: GetArmorAddonRaces ArmorAddonHasRace AddAdditionalRaceToArmorAddon RemoveAdditionalRaceFromArmorAddon https://www.nexusmods.com/skyrimspecialedition/mods/65410 1 Link to comment Share on other sites More sharing options...
Tiziano74 Posted Tuesday at 06:01 PM Author Share Posted Tuesday at 06:01 PM On 3/24/2025 at 10:27 AM, dylbill said: Hey, coincidentally I was working on similar functions for my script resource Dylbill's Papyrus Functions, so adding that wasn't too much trouble. Relevent functions in DbSkseFunctions: GetArmorAddonRaces ArmorAddonHasRace AddAdditionalRaceToArmorAddon RemoveAdditionalRaceFromArmorAddon https://www.nexusmods.com/skyrimspecialedition/mods/65410 Expand Ddylbill thanks, really! I know this isn't a common question, but the mod I'm building is already pretty heavy on its own . . . do you think there's a way, with your permission of course, to integrate these functions directly into my mod, without requiring the user to download something additional? Link to comment Share on other sites More sharing options...
dylbill Posted Tuesday at 07:29 PM Share Posted Tuesday at 07:29 PM On 3/25/2025 at 6:01 PM, Tiziano74 said: Ddylbill thanks, really! I know this isn't a common question, but the mod I'm building is already pretty heavy on its own . . . do you think there's a way, with your permission of course, to integrate these functions directly into my mod, without requiring the user to download something additional? Expand Unfortunately no. Including the resource with your mod download can lead to versioning conflicts which should be avoided. 1 Link to comment Share on other sites More sharing options...
Tiziano74 Posted Tuesday at 07:36 PM Author Share Posted Tuesday at 07:36 PM On 3/25/2025 at 7:29 PM, dylbill said: Unfortunately no. Including the resource with your mod download can lead to versioning conflicts which should be avoided. Expand Ok thanks Link to comment Share on other sites More sharing options...
dylbill Posted Tuesday at 08:27 PM Share Posted Tuesday at 08:27 PM On 3/25/2025 at 7:36 PM, Tiziano74 said: Ok thanks Expand No problem The other option is to make your own skse plugin. How I got started was Mrowr Purr's tutorials. Basic setup: https://www.youtube.com/watch?v=rTN9bAB2S9A&list=PLektTyeQhBZeDIRp2g15SsK1GX2Ig8YVW To bind functions to papyrus: https://www.youtube.com/watch?v=lBs2mhB1Abs&list=PLektTyeQhBZeDIRp2g15SsK1GX2Ig8YVW&index=9 My plugin is open source, so here's a link to those functions I added: https://github.com/Dylbill-Iroh/DbSkseFunctions/blob/main/DbSkseFunctions/src/BipedSlots.cpp 1 Link to comment Share on other sites More sharing options...
Tiziano74 Posted Tuesday at 09:13 PM Author Share Posted Tuesday at 09:13 PM On 3/25/2025 at 8:27 PM, dylbill said: No problem The other option is to make your own skse plugin. How I got started was Mrowr Purr's tutorials. Basic setup: https://www.youtube.com/watch?v=rTN9bAB2S9A&list=PLektTyeQhBZeDIRp2g15SsK1GX2Ig8YVW To bind functions to papyrus: https://www.youtube.com/watch?v=lBs2mhB1Abs&list=PLektTyeQhBZeDIRp2g15SsK1GX2Ig8YVW&index=9 My plugin is open source, so here's a link to those functions I added: https://github.com/Dylbill-Iroh/DbSkseFunctions/blob/main/DbSkseFunctions/src/BipedSlots.cpp Expand WOW! I'll try 1 Link to comment Share on other sites More sharing options...
Recommended Posts