Usagirei Posted February 26, 2023 Posted February 26, 2023 Made a xEdit Script to Patch for DEC with devices from other mods (DDEquip, Unforgiving Devices, anything that uses zad/UD inventory scripts), so they are available for choosing in the cursed container events.  Place the Script and the Txt file in the xEdit "Edit Scripts" folder, then select the mods you want to scan for devices, or your whole load order. You can also run the script multiple times, by manually selecting the mods/devices you want to add individually, new devices will be added to the FormLists only if not present already.  Right Click -> Apply Script... -> 'Skyrim - Devious Enchanted Chests - Regenerate FormLists.pas  A ESL-Flagged esp named 'dD Enchanted Chests - Patch.esp' will be created if not present, and it'll output the device themes file to 'SKSE\Scripts\dtraps\ddLib.json'.  Delete the Patch ESP and reopen xEdit, or right-click delete the overriden FLST records and run the script again if you want a device to be removed from the FormLists after a rule edit.  Spoiler for more details on how to edit the rules file  Spoiler Tests are semicolon separated, and are 'and'-ed together, and ALL the tests in a given rule must be evaluated to True(+) or False(-) for it to match.  dtraps_zad_DeviousHarnessRope=+KWDA:zad_DeviousHarness;+FULL:Rope  Puts the device in the dtraps_zad_DeviousHarnessRope FormList, if the device: Has the keyword zad_DeviousHarness AND Contains Rope (case sensitive) in its Name,  Rules are tested top to bottom, the first match is applied. Separate lines can be used for the same FormList name to achieve 'or'-ing, eg dtraps_zad_DeviousHarnessRope=+KWDA:zad_DeviousHarness;+FULL:Rope dtraps_zad_DeviousHarnessRope=+KWDA:zad_DeviousHarness;+EDID:rope  Lines starting with *= are applied to all rules  Rules are either Positive or Negative evaluations (+FILE, -FULL, etc) and can be one of the 4 types FILE: Esp name (Exact Match) KWDA: Keyword (Exact Match) FULL: Display Name (Partial Match) EDID: Editor ID (Partial Match)  DEC - FormList Updater.7z 6
Chloe Rose Posted March 28, 2023 Posted March 28, 2023 (edited) Hi all  I am worried here. I encounter the same issue that an user posted before. By that i mean i have to open containers twice and particularly those locked to trigger a calculation of chances for DD trap. I enabled the debug messages and succeful picking nothing happens. By that i mean no debug messages. When i reopen the chest. Initializing appear and chances are calculated. Weird......   Someone has an idea? Edited March 28, 2023 by Chloe Rose 1
Hex Bolt Posted March 28, 2023 Posted March 28, 2023 3 hours ago, Chloe Rose said: i have to open containers twice and particularly those locked to trigger a calculation of chances for DD trap. Bane Master described a possible cause for this two pages back, which might apply depending on what you're doing.
HeckinBestBork Posted April 10, 2023 Posted April 10, 2023 Think I've discovered a bug. On the latest version of Skyrim SE (guess they call that AE now?), and it seems setting the restraints threshold to 0, which should disable the threshold according to its description, actually makes it so no devices can be equipped. Looking through the scripts it seems there's no check for the value being 0 and it uses the value raw, so having it set to 0 will mean the number of items it's trying to equip will never be higher than 0 unless the threshold is raised. Setting the threshold to the max essentially disables the threshold so it's not much of an issue, but I figured I'd point it out.
Bane Master Posted April 10, 2023 Author Posted April 10, 2023 5 hours ago, HeckinBestBork said: it seems setting the restraints threshold to 0, which should disable the threshold according to its description, actually makes it so no devices can be equipped. Thanks for the report - I'll take a look next time I'm working on DEC
Tseverin Posted June 11, 2023 Posted June 11, 2023 Has it already been thought of or mentioned the possibility to add doors? Is it something I could add with no real skill at coding? Would this be something Bane Master can incorporate in the next update if there was one? If it has already been noted in this thread, I apologize. I went about 6 or 7 pages and didn't see anything. I did see something about traps on bodies... Would doors be handled the same way?
donttouchmethere Posted June 11, 2023 Posted June 11, 2023 On 2/26/2023 at 10:01 AM, Usagirei said: Made a xEdit Script to Patch for DEC with devices from other mods (DDEquip, Unforgiving Devices, anything that uses zad/UD inventory scripts), so they are available for choosing in the cursed container events. Woooow! You're Molag Bal send! ?
TU106-400A-A1 Posted July 17, 2023 Posted July 17, 2023 On 1/8/2023 at 12:42 PM, Bane Master said: It's certainly possible to replace ScanCellNPCs with a vanilla function that does the same thing, the very earliest versions way back in 2014 used this method - it's more resource intensive though. Â Sooooo, kinda uncomfortable to ask... But maybe you can do lil patch'ik which will replace broken function with vanilla one? Or is it complicated work?Â
Bane Master Posted July 17, 2023 Author Posted July 17, 2023 25 minutes ago, TU106-400A-A1 said: replace broken function with vanilla one The function is not broken, it works fine in LE/SE/AE but is unfortunately not supported in VR. Â So - yes I can look at it next time I'm working on DEC, but as I don't have VR and I'm not going to change the function for a worse solution for all the other users we need a way to detect VR in script so that it can use the "old" method whilst everyone else sticks with the current one. Â Â
TU106-400A-A1 Posted July 18, 2023 Posted July 18, 2023 10 hours ago, Bane Master said: The function is not broken, it works fine in LE/SE/AE but is unfortunately not supported in VR.  So - yes I can look at it next time I'm working on DEC, but as I don't have VR and I'm not going to change the function for a worse solution for all the other users we need a way to detect VR in script so that it can use the "old" method whilst everyone else sticks with the current one.    I don't know how to code, I'm only suggesting. Ofc you don't need to force all users use worse method, but can't you just do one version for everyone else which will use normal method, and another one with old method only for vr users. So kinda just create separated version for vr, and ppl can select between them in downloads section.
Hex Bolt Posted July 18, 2023 Posted July 18, 2023 If anything, I'd suggest a toggle in the MCM to use the old or new scanning function. That keeps all the code together, players won't accidentally download the wrong version, the author can easily test it, and the choice would also be available for non-VR players who might have some niche case where the old function works better for them.
Bane Master Posted July 18, 2023 Author Posted July 18, 2023 5 hours ago, HexBolt8 said: I'd suggest a toggle in the MCM to use the old or new scanning function. I can see why you'd suggest it - but I would much prefer an automated solution. There must be a way to determine if the version being used is VR
wareware Posted August 26, 2023 Posted August 26, 2023 Could you add the ability to set a cooldown on event triggers?
Bane Master Posted August 27, 2023 Author Posted August 27, 2023 On 8/26/2023 at 1:21 AM, wareware said: Could you add the ability to set a cooldown on event triggers? I'll take a look at a global cooldown next time I'm working on DEC 2
Bane Master Posted September 4, 2023 Author Posted September 4, 2023 What's New in Version V3.20 SE/LE Released Just now DEC now requires PowerofThree's Papyrus Extender Updated device equip functions to be faster and less resource intensive Added Devious device data caching to further reduce script load Added a global trap cooldown setting to the MCM NPC and Follower scans now use PO3 functions for greater efficiency and compatibility with VR 3
Ricardo-Evans Posted September 4, 2023 Posted September 4, 2023 curious about what's the device in the screenshot, looks like the one from estrus of skyrim but with different textures
Taki17 Posted September 4, 2023 Posted September 4, 2023 8 minutes ago, Ricardo-Evans said: curious about what's the device in the screenshot, looks like the one from estrus of skyrim but with different textures It's the same however with different textures. Found here: Â
Sarif3 Posted September 4, 2023 Posted September 4, 2023 Does anyone have the old 3.11 version? It was required by a wabbajack mod list and the new 3.2 doesn't play nice with it, but 3.11 doesn't seem to be listed anywhere. 1
DonQuiWho Posted September 4, 2023 Posted September 4, 2023 (edited) 20 minutes ago, Sarif3 said: Does anyone have the old 3.11 version? It was required by a wabbajack mod list and the new 3.2 doesn't play nice with it, but 3.11 doesn't seem to be listed anywhere.  Wabbajack is a Tool of the Devil himself  But thanks for the 'Heads Up' that there's a 3.2 version out there LOL. I'd missed that ... LOL Edited September 4, 2023 by DonQuiWho 2
wareware Posted September 5, 2023 Posted September 5, 2023 @Bane Master Weird question but whats the reason behind loading the keywords in dtraps_dDevices on game load rather than assigning them as property?
Bane Master Posted September 5, 2023 Author Posted September 5, 2023 41 minutes ago, wareware said: @Bane Master Weird question but whats the reason behind loading the keywords in dtraps_dDevices on game load rather than assigning them as property? TBH - no particular reason in this case other than habit & not being bothered to load the esp and add the properties when writing the code! ?  It is a useful technique to support external mods without adding them as masters - FSM is a good example of this, it supports a range of mods (Devious Devices, Toys & Love, Sexlab) without any dependency on them. 2
FatKidz Posted September 25, 2023 Posted September 25, 2023 Any idea which version of Estrus Chaurus+ to use? I've got the most recent one I can find on the compatibility thread by judge007 (with all the addons bundled into it), but the related options in this mods MCM are greyed out.
ebbluminous Posted September 25, 2023 Posted September 25, 2023 5 minutes ago, FatKidz said: Any idea which version of Estrus Chaurus+ to use? I've got the most recent one I can find on the compatibility thread by judge007 (with all the addons bundled into it), but the related options in this mods MCM are greyed out. There is an official SE on on the LE page
ebbluminous Posted September 30, 2023 Posted September 30, 2023 4 hours ago, Kenway21 said: What should I do if I want only the animations from Estrus for Skyrim and not the shouts? disable the esp for the estrus mod
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