Tiziano74 Posted Sunday at 06:29 PM Share Posted Sunday at 06:29 PM 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 Monday at 06:52 AM Share Posted Monday at 06:52 AM 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 21 hours ago Author Share Posted 21 hours ago 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 20 hours ago Share Posted 20 hours ago 21 hours ago, 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 20 hours ago Author Share Posted 20 hours ago 20 hours ago, 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 19 hours ago Share Posted 19 hours ago 20 hours ago, 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 18 hours ago Author Share Posted 18 hours ago 19 hours ago, 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