iwannamodsjr. Posted December 2, 2020 Posted December 2, 2020 So I'm trying to allow mittens to hold weapons and allow straitjackets to allow use of magic. There is a mod that allows magic with mittens already but I want the mittens to allow weapons. I'm pretty noob when it comes to modding, i've only done stuff like outfit change & weapon stat tweaks in creation kit so I'm not sure how to change scripts or tweak scripts to allow the weapons in mitten & magic in straitjacket.
VersuchDrei Posted December 2, 2020 Posted December 2, 2020 When looking in the code of Magic allowing Bondage Mittens you can see that this line was commented out (line 8): if !a.GetEquippedWeapon(true) && !a.GetEquippedWeapon(false) && !a.getEquippedSpell(1) && !a.getEquippedSpell(0) And replaced by this line (line 9): if !a.GetEquippedWeapon(true) && !a.GetEquippedWeapon(false) And then some other parts in the stripweapons function (lines 25 to 28 and 37 to 40) were commented out. Basically the script checks for weapons and spells and removes them and the author commented out the spells part. So you just comment out the weapons part instead for mittens and then comment out the spells part for the SJ script. Keep in mind that this mod was for DD4 and I don't know if the DD5 scripts still look the same. And then to quote the author of Magic allowing Bondage Mittens: "As well as spending a ton of extra time tracking down all the external source script files needed to get devious device based scripts to compile" In other words, the hard part will be to get all the source scripts to compile DD scripts, as you need FNIS sexy move, FNIS creature pack, console util, papyrus util, the SkyUI SDK, some SKSE scripts you only get from their GitHub and probably some other stuff that I already forgot about. It's really a game of Compile -> enter error message in google -> find some LL forum post how to fix -> repeat 10 times.
iwannamodsjr. Posted December 2, 2020 Author Posted December 2, 2020 That seems like wayyy out of my experties but thanks! at least I know where to start now
Recommended Posts
Archived
This topic is now archived and is closed to further replies.