thedarkone1234 Posted July 7, 2020 Posted July 7, 2020 On 7/5/2020 at 5:02 PM, thedarkone1234 said: . Still unsolved, by the way. I would really appreciate any ideas
Zaflis Posted July 7, 2020 Posted July 7, 2020 1 hour ago, thedarkone1234 said: Still unsolved, by the way. I would really appreciate any ideas Delete FNIS and empty FNIS Gen mod. Then reinstall FNIS and set FNIS Gen as Output, move FNIS Gen lowest in priority list (higher number than any other mod). Generate FNIS and... works?
TheOrdinator Posted July 8, 2020 Posted July 8, 2020 I'm still having my bizarre "jumbled animations" issue, which has somehow gotten even weirder since I've reinstalled everything animation related. Now when I equip anything that's supposed to put my hands in front, like Iron Handcuffs or Prisoner Chains, it makes it so I'm doing the hobble skirt animation when I stand still, and when I walk or run, it puts my hands behind me. When I jump, it still puts my hands in front of me, like it should, but when I land they're behind me again. Then, after a little awhile, the animation resets, then my arms go up again as if I'm in a yoke. I keep removing stuff, reinstalling stuff and rebuilding Nemesis but the problem still persists. Before anyone else "lol just don't run nemesis bro go back to FNIS," everything was running fine with Nemesis before. It all broke when I uninstalled JoP, installed Archery Gameplay Overhaul. I've uninstalled AGO and it's still broken.
TheOrdinator Posted July 8, 2020 Posted July 8, 2020 Alright, I was able to fix it by uninstalling Devious Devices - Equip 444, installing the latest version of Nemesis and rebuilding it all again. Not sure which one fixed it, but I'll leave this up just in case anyone else has the same issue as me.
thedarkone1234 Posted July 8, 2020 Posted July 8, 2020 15 hours ago, Zaflis said: Delete FNIS and empty FNIS Gen mod. Then reinstall FNIS and set FNIS Gen as Output, move FNIS Gen lowest in priority list (higher number than any other mod). Generate FNIS and... works? Nope XD
KombatWombat47 Posted July 8, 2020 Posted July 8, 2020 I just wanted to thank you and everyone who contributed to this mod for you hard work and dedication. I was also wondering if there's any way to change some scripts to prevent changing the difficulty modifiers in the MCM while the player character is restrained? I would really like if a feature like that could be implemented. Thanks again for your fantastic work.
stas2503 Posted July 13, 2020 Posted July 13, 2020 Hi, I am making custom devices and I have a question. I need to make the key be deleted when the device is unlocked. I did this for Fallout 4 and there I used property "destroy key". Is this possible here?
Zaflis Posted July 13, 2020 Posted July 13, 2020 1 hour ago, stas2503 said: Hi, I am making custom devices and I have a question. I need to make the key be deleted when the device is unlocked. I did this for Fallout 4 and there I used property "destroy key". Is this possible here? Yes, "Bool Property DestroyKey = False Auto" in zadEquipScript. Or DestroyOnRemove (for the device itself).
_SpaceHamster_ Posted July 17, 2020 Posted July 17, 2020 Not sure if I'm tripping or not, but do characters always make the "gagged struggle" noises when swinging weapons? I started playing again today after a long break and I swear that she always was silent when attacking while wearing a gag. It's gotten to the point where I just force remove my gag when I'm in combat. Is there any reason why this would happen and can I make my character silent again? loadorder.txt modlist - kopie.txt
stas2503 Posted July 18, 2020 Posted July 18, 2020 Mmm ... I found 2 keywords in the zadLibs library: zad_GagNoOpenMouth and zad_GagCustomExpression. Wanted to boo what they do if I add them to custom gags. And do they need to be added directly to the scriptinstance device or to the property of the inventory device?
evilblade Posted July 20, 2020 Posted July 20, 2020 Hi, guys! I can't actually remember if I've already asked it here or not.. Is it possible to somehow reduce polling interval lesser than 0.5 hours? I'm playing with timescale set to 5 here and 0.5 hours is quite a long time for me.
stas2503 Posted July 23, 2020 Posted July 23, 2020 I solved the question with keyword. Now another question, even 2: Is it possible, somehow, through connecting the zadequipscript script to an item, to prohibit the removal and equipping of devices with an equipped item? In wiki DD I saw the line removedevice. it contains the parameter destroyDevice = false. Does this mean that if I set this to = true in my script, then when removed, the device will be removed from the inventory?
naaitsab Posted July 23, 2020 Posted July 23, 2020 2 hours ago, stas2503 said: I solved the question with keyword. Now another question, even 2: Is it possible, somehow, through connecting the zadequipscript script to an item, to prohibit the removal and equipping of devices with an equipped item? In wiki DD I saw the line removedevice. it contains the parameter destroyDevice = false. Does this mean that if I set this to = true in my script, then when removed, the device will be removed from the inventory? 1. If you just want to prevent the player from easily removing an equipped item you can use the equipitem function: Force Player to equip the dress - but they can't remove it PlayerRef.EquipItem(DressProperty, true) If you want to get popups, menu's, keys etc then you need to make a "full DD" item by creating the _inventory and _rendered items. Otherwise the script will break. 2. Correct
stas2503 Posted July 23, 2020 Posted July 23, 2020 52 minutes ago, naaitsab said: 1. If you just want to prevent the player from easily removing an equipped item you can use the equipitem function: Force Player to equip the dress - but they can't remove it PlayerRef.EquipItem(DressProperty, true) If you want to get popups, menu's, keys etc then you need to make a "full DD" item by creating the _inventory and _rendered items. Otherwise the script will break. Okay, I'll explain it easier: I want to make an amulet with the following properties: 1. The character is wearing an amulet - the character can neither put on devices, nor take off. 2. There is no amulet on the character - the character does what he wants To prevent the character from unequip devices, I was able to make it a keyword counting condition. I just can't figure out how to prevent the character from putting on devices, if the character is wearing an amulet.
naaitsab Posted July 23, 2020 Posted July 23, 2020 2 hours ago, stas2503 said: Okay, I'll explain it easier: I want to make an amulet with the following properties: 1. The character is wearing an amulet - the character can neither put on devices, nor take off. 2. There is no amulet on the character - the character does what he wants To prevent the character from unequip devices, I was able to make it a keyword counting condition. I just can't figure out how to prevent the character from putting on devices, if the character is wearing an amulet. With vanilla items, impossible. If you create custom items you can try to use the "EquipConflictingDevices" array on the properties tab of the script. Add a custom keyword to the amulet and add this keyword to that property on your items. So if the script detects the keyword on the amulet you can't equip the item.
onikujo Posted July 25, 2020 Posted July 25, 2020 I'm not totally sure where to post but I'm having issues with headgear being placed improperly on my character's head. I'm assuming it's because I'm using the high-poly head modification, and I was briefly trying to see if there were any compatibility mods around for that?
Zaflis Posted July 25, 2020 Posted July 25, 2020 1 hour ago, onikujo said: I'm not totally sure where to post but I'm having issues with headgear being placed improperly on my character's head. I'm assuming it's because I'm using the high-poly head modification, and I was briefly trying to see if there were any compatibility mods around for that? I think you would need a high poly head model that doesn't change its overall shape. Maybe you can fix some clipping in racemenu. But i'm not a modeller and people would need to at least know where you downloaded the high-poly mod from. I think it would be too complex to make dozens of asset changes just for the mod, simpler to modify just the head itself.
onikujo Posted July 25, 2020 Posted July 25, 2020 Oh I guess it wasn't clear. The mod is literally called high poly head. I also don't think it changes the head too much but it just nudges it slightly so that blindfolds don't fit properly and it seems as if gags don't open the mouth.
El_Duderino Posted July 25, 2020 Posted July 25, 2020 On 7/23/2020 at 8:48 PM, naaitsab said: On 7/23/2020 at 6:16 PM, stas2503 said: Okay, I'll explain it easier: I want to make an amulet with the following properties: 1. The character is wearing an amulet - the character can neither put on devices, nor take off. 2. There is no amulet on the character - the character does what he wants To prevent the character from unequip devices, I was able to make it a keyword counting condition. I just can't figure out how to prevent the character from putting on devices, if the character is wearing an amulet. With vanilla items, impossible. If you create custom items you can try to use the "EquipConflictingDevices" array on the properties tab of the script. Add a custom keyword to the amulet and add this keyword to that property on your items. So if the script detects the keyword on the amulet you can't equip the item. naaitsab's method is very likely to get you the results you are looking for. You *may* possibly have to turn the amulet itself into a Devious Device for it to function, but I'm not sure about that. But in any case the EquipConflictingDevices will definitely work when you attach it a custom DD -- and if you want to block equipping *all* types of DDs, simply add all their keywords into the EquipConflictingDevices property's array. To achieve your #2, to prevent unequipping of a work device when other devices (actually, their keywords) are detected as equipped, you can use the inverse of this property: UnequipConflictingDevices. Say for example you have a pair of gloves and want them to be impossible to unequip while a pair of arm cuffs are also equipped, then you can use UnequipConflictingDevices (with zad_deviousarmcuffs keyword in array) in the gloves' properties. To truly achieve your amulet's functionality from #1 above, you'll probably have to combine both EquipConflictingDevices and UnEquipConflictingDevices into the same device. I have no idea if that even works, I doubt anybody has tried that before. Maybe it causes a big explosion in Papyrus, who knows.
Hackfresse77 Posted July 26, 2020 Posted July 26, 2020 After hours of try and error I have still the problem that some devices not showing up. For example from the Harness only the choker appears?
Saber2th Posted July 27, 2020 Posted July 27, 2020 I'm randomly starting to have some trouble with this mod's MCM menu recently. It shows up in the list of MCM menus but when I open Devious Device, it's empty. There's no option tabs or anything. Has anyone had this problem before? I've tried to load a very old save and DD MCM menu is working perfectly fine there. Is there a way to reset DD without reinstalling it? It crashes my game if I try.
Kimy Posted July 27, 2020 Posted July 27, 2020 7 hours ago, Saber2th said: I'm randomly starting to have some trouble with this mod's MCM menu recently. It shows up in the list of MCM menus but when I open Devious Device, it's empty. There's no option tabs or anything. Has anyone had this problem before? I've tried to load a very old save and DD MCM menu is working perfectly fine there. Is there a way to reset DD without reinstalling it? It crashes my game if I try. That usually happens if they don't give the MCM enough time to populate the menu after creating a new game. This mod is your friend: https://www.nexusmods.com/skyrim/mods/57795
Saber2th Posted July 28, 2020 Posted July 28, 2020 22 hours ago, Kimy said: That usually happens if they don't give the MCM enough time to populate the menu after creating a new game. This mod is your friend: https://www.nexusmods.com/skyrim/mods/57795 I've tried the mod but it didn't work unfortunately. I feel like the the problem is much more serious than that, none of the devices have model and equipping them doesn't do anything (no warning about locking yourself etc.) It's not bodyslide problem because everything works in the old save. It's as if everything DD related are messed up in my new saves.
Kimy Posted July 28, 2020 Posted July 28, 2020 7 hours ago, Saber2th said: I've tried the mod but it didn't work unfortunately. I feel like the the problem is much more serious than that, none of the devices have model and equipping them doesn't do anything (no warning about locking yourself etc.) It's not bodyslide problem because everything works in the old save. It's as if everything DD related are messed up in my new saves. If that save is older, check your Papyrus log for signs of a corrupted savegame, then.
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