bwagdog669680 Posted September 25, 2023 Posted September 25, 2023 23 minutes ago, izzyknows said: Download and overwrite with the MCM patch from RC8.  Okay. To be clear, RC9 is the "DD20RC9RestFix", or is it that plus the "DD_Item_Remover" too? Also, does RC9 overwrite RC8 (except for the MCM patch)? Or do I leave both RC's installed and enabled?  Thanks for the quick reply!
bwagdog669680 Posted September 25, 2023 Posted September 25, 2023 41 minutes ago, izzyknows said: Download and overwrite with the MCM patch from RC8. So I just looked into the archive, it looks like "DD20RC9RestFix" is simply adding scripts for the restraints framework. So it looks like I need RC8 installed as "DD20RC9RestFix" doesn't contain the Devious Devices.esm.  I looked in the RC8 archive and found the MCM folder. I'm not sure where the "patch" is. A few folders into the MCM folder is the config.json, lib.swf, and lib_collar.swf. Are these files what you meant by "patch" for MCM.
izzyknows Posted September 25, 2023 Posted September 25, 2023 (edited) 1 hour ago, bwagdog669680 said: I'm not sure where the "patch" is It's at the bottom of the linked comment. Â Â Edited September 25, 2023 by izzyknows
bwagdog669680 Posted September 26, 2023 Posted September 26, 2023 3 hours ago, izzyknows said: It's at the bottom of the linked comment. Â Got it! You freakin' rock! Â Thanks a ton!
M2theAGGOT Posted September 26, 2023 Posted September 26, 2023 9 hours ago, vaultbait said:  If you're talking about the RC9 version of DD, these are the masters in the plugin's header:  Fallout4.esm DLCworkshop02.esm DLCNukaWorld.esm TortureDevices.esm  So at the moment you would need to buy Nuka-World and (I think?) Contraptions Workshop. You may be able to find a discounted bundle of all the DLCs though, which I'd recommend if possible because other mods you might want to install could require different ones. Keep in mind that all of the DLCs are "content DLCs" insofar as they contain a lot of added items and effects that mod creators may wind up using on the assumption that "everyone has all the DLCs (or GotY edition) these days." Tyvm for your help.
Elsidia Posted September 26, 2023 Posted September 26, 2023 I don't understand - is new MCM in RC9 is glitchy now? It should not be as i use fixed version to update new things.
izzyknows Posted September 26, 2023 Posted September 26, 2023 5 minutes ago, Elsidia said: I don't understand - is new MCM in RC9 is glitchy now? It should not be as i use fixed version to update new things. It's not. Â
Kanlaon Posted September 26, 2023 Posted September 26, 2023 Hello, I wanted to give RC9 a try. What I wanted to know: Is the database still supported in RC9? Because I'm currently using the database in a mod, but for the player only. The DD database gives an ordered result, in contrast to the formlist 'DD_PlayerEquippedItems'. One disadvantage, however, is that the function "databaseRetrieve (akActor)" returns a struct as a result and therefore is only supported by the compiler with a hard dependency on Devious Devices. ( As a workaround I write a "wrapper function" in a mod that already had a hard dependency to DD)  Since you are implementing new functions also, is there a really quick solution to find an inventory device to a given rendered device ? In my own mods, I always use 2 corresponding list, which eventually requires to be updated whenever a new version for DD is released.  One formlist "rendered_devices" contains all rendered devices, that are 'for interest'. The other formlist "inventory_devices" contains all the inventory devices corresponding to the rendered devices.  In papyrus I use the following code fragment:    armor inventory   int idx = F4B_DD_armorlist_rendered.find (item)   if idx >= 0      inventory = F4B_DD_armorlist_Inventory.getat (idx) as armor  I do not know if something similar is now possible with the new functions supporting biped slots  Just a suggestion  regard  Â
Elsidia Posted September 27, 2023 Posted September 27, 2023 17 hours ago, Kanlaon said: I do not know if something similar is now possible with the new functions supporting biped slots From RC9 post: Form Function GetEquippedGenericInventoryDeviceByKeywordAndOrBipedSlot(actor akactor, Keyword DeviousKeyword = none, int bps = -1) Returns inventory device form equipped by parameters. You can set only one keyword or biped slot. Biped slot can be set as biped slot or index (there is check of it) it reads keywords from rendered devices too, so you can use keyword not only as devicekeyword in inventory device. If you set keyword it will return first found device. If you set both (keyword and biped slot) - it will return only device what is equipped in biped slot and have this keyword. If device is equipped in biped slot, but keyword not match, it will return none. Note: if you use biped slot, use main biped slot as F4SE can't read not main. For hoods it 46 headband, for boots it 44 {4] - left slot.  Bool Function RemoveGenericDeviceByKeywordAndOrBipedSlot(actor akactor, Keyword DeviousKeyword = none, int bps = -1) - the same as previous, but instead of return form it unequips this device.  All functions work with NPC too and speed is depend on inventory items count.  If you have idea what new functions need, can tell about it. Functions not much tested, but seems work fine.  17 hours ago, Kanlaon said: Is the database still supported in RC9? I not take out database support, so in theory must work. 1
Kanlaon Posted September 28, 2023 Posted September 28, 2023 (edited) Ok, I have started testing with RC9 and RC9 provide a ton of error messages in my papyrus log. I hoped this misbehaviour has been removed, since RC8 already produces a lot of errormessage when it starts. Anyway  stack:    [DD_Library (0B004C50)].dd:dd_library.Log() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 1580    [DD_Library (0B004C50)].dd:dd_library.databaseClean() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 2246    [DD_Library (0B004C50)].dd:dd_library.OnTimerGameTime() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 1836 [09/28/2023 - 05:41:46PM] error: Cannot call DebugType() on a None object, aborting function call stack:    [DD_Library (0B004C50)].dd:dd_library.Log() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 1582    [DD_Library (0B004C50)].dd:dd_library.databaseClean() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 2246    [DD_Library (0B004C50)].dd:dd_library.OnTimerGameTime() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 1836 [09/28/2023 - 05:41:46PM] warning: Assigning None to a non-object variable named "::temp463"  I assume this is a race between the ConfigQuest and the regular Quest with the DDLibrary script while config.DebugType is not yet assigned, but already used (?) Function Log(String out)    If config.DebugType == 1       Debug.Trace("[DD]: " + out)    ElseIf    config.DebugType == 2       notify("[DD]: " + out)    EndIf   EndFunction  In Kimy's original it cannot happen because the function log is very simple Function Log(String out)    Debug.Trace("[DD]: " + out) EndFunction  Maybe if the function could be changed to something like this (untested) Function Log(String out)    If config.DebugType && (config.DebugType == 2)       notify("[DD]: " + out)        return    EndIf       Debug.Trace("[DD]: " + out) EndFunction  it could improove the solution, while the underlaying problem still is there. At least the powder for your eyes should be gone. I've not yet looked into the MCM if it is possible to switchoff logging complete, my suggestion of cource needs a small change  Regards      Edited September 28, 2023 by Kanlaon
Kanlaon Posted September 28, 2023 Posted September 28, 2023 I guess I will go back to Kimy's original, because RC9 flooding the Papyrus log makes it too hard for me to localize the problems in my own mod. Here some other start error - Do not know if it is serious.  [09/28/2023 - 06:27:10PM] error: Cannot call PipBoySetting() on a None object, aborting function call stack:    [DD_Library (0B004C50)].dd:dd_library.AutoHidePipboy() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 3589    [DD_Library (0B004C50)].dd:dd_library.ProcessBoundEffects() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 3460    [alias playerRef on quest DD_Library (0B004C50)].DD:DD_PlayerRefScript.OnPlayerLoadGame() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_PlayerRefScript.psc" Line 50 [09/28/2023 - 06:27:10PM] warning: Assigning None to a non-object variable named "::temp1114" stack:    [DD_Library (0B004C50)].dd:dd_library.AutoHidePipboy() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 3589    [DD_Library (0B004C50)].dd:dd_library.ProcessBoundEffects() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_Library.psc" Line 3460    [alias playerRef on quest DD_Library (0B004C50)].DD:DD_PlayerRefScript.OnPlayerLoadGame() - "G:\SteamLibrary\steamapps\common\Fallout 4\Data\Scripts\Source\User\DD\DD_PlayerRefScript.psc" Line 50  Regards Â
Kanlaon Posted September 28, 2023 Posted September 28, 2023 Just another stupid idea. Independant running events/functions can often cause unexpected trouble.  So maybe it is possible instead that the OnquestInit and OnInit Event is triggered from the game, simply place a similar function near to the end of OnQuestInit (but before the Update function call) in the Scriptname DD:DD_ConfigQuest  Regards
Elsidia Posted September 29, 2023 Posted September 29, 2023 (edited) 9 hours ago, Kanlaon said: Scriptname DD:DD_ConfigQuest Ok will take out my part of log changing, but it will not solve global problem. Seems your latest event log errors happens on playerload game, so seems config quest not loaded, before calls it. So how at this stage onplayerload event we can be sure, that config quest is already loaded? UPD: Also in DD RC9 is many logging as for tests, so it will spam log entry more. In each restraint apply or remove is about many lines of log. Config quest was added in RC8 so i assume it works right and use it for me. UPD2: Also in my test run this error not shows up, so i can't tell why it's shows up in your game. Add test run log. UPD3: Have strange idea: this error shows up after you load a game, save it (can on new slot), exit from game to windows, then load new save again? I not familiar with all FO4 engine, but i have strange idea, that this error happens only on first run, as new mod not initialized and event onplayer load game happens faster as mod initialize. So after it's initialized save a game and try load again to avoid this error. Papyrus.0.log Edited September 29, 2023 by Elsidia
Kanlaon Posted September 29, 2023 Posted September 29, 2023 6 hours ago, Elsidia said: Ok will take out my part of log changing, but it will not solve global problem. Seems your latest event log errors happens on playerload game, so seems config quest not loaded, before calls it. So how at this stage onplayerload event we can be sure, that config quest is already loaded? UPD: Also in DD RC9 is many logging as for tests, so it will spam log entry more. In each restraint apply or remove is about many lines of log. Config quest was added in RC8 so i assume it works right and use it for me. UPD2: Also in my test run this error not shows up, so i can't tell why it's shows up in your game. Add test run log. UPD3: Have strange idea: this error shows up after you load a game, save it (can on new slot), exit from game to windows, then load new save again? I not familiar with all FO4 engine, but i have strange idea, that this error happens only on first run, as new mod not initialized and event onplayer load game happens faster as mod initialize. So after it's initialized save a game and try load again to avoid this error. Papyrus.0.log 69.2 kB · 0 downloads Â
Kanlaon Posted September 29, 2023 Posted September 29, 2023 (edited) Hello  Yes, I see it. The problem is I do not know which mods I want to have for a new playthrough and testing my own mods often (not always) requires a clean save.  So when testing maybe everyday I do something like a 'hardcore start' (?) going from an unmodded savegame Lvl30 to a game with about 100 mods in load order. Most of the mods through none or only very few errors with the exception of RC9.  In my opinion and from my background as a programmer a hardcore start should be possible, at least if the mod does not depent much on other mods. The problem with the config quest is only internal in Devious Devices, so i assume it can be solved.  RC9 has a lot of (other) improovements compare to the original, therefore I will first try now with a modificated Log function.  Regards   Edited September 29, 2023 by Kanlaon
Kanlaon Posted September 29, 2023 Posted September 29, 2023 Hmmm, changing of the log and dbgnotification functions only removes some of the errors in the papyrus log.  I have made some smaller changes and all papyrus errors from RC9 in my 'hardcore start' are gone. So changing Log function is not necessary (only if you want to improove performance)  Only I am still not sure if my solution now is correct, since the order in which the functions are called is not what I have expected.  Tomorrow I will have a look again  Regards.
Elsidia Posted September 30, 2023 Posted September 30, 2023 (edited) 11 hours ago, Kanlaon said: Tomorrow I will have a look again Seems in your game config quest not defined somehow. So error will generate every time when other script goes get variables from config quest. like variable config is empty (none) So when DD calls config.[some variable] it generates error config variable is none Quote Cannot call PipBoySetting() on a None object, aborting function call And in this line 3580 is: If config.PipBoySetting == -1  UPD: Do you have in path .... \Fallout 4\Data\Scripts\DD file DD_ConfigQuest.pex or if use MO2 - activated folder rewrite? This is how to config is defined into DD and if not found this file, it will be none.  UPD2: Line in DD library: DD:DD_ConfigQuest Property config Auto Const      ; For mod settings/MCM  UPD3: And to completely work DD 2/0 RC8 or RC9 first you need remove DD 2.0 orignal completely - MO2 sometimes left old path and files, so be 250% sure that you remove all old DD 2.0. And only then install RC8 or RC9 as new mod. Both are completely independent and don't need both. only RC8 or RC9. Edited September 30, 2023 by Elsidia
Kanlaon Posted September 30, 2023 Posted September 30, 2023 (edited) Ok, RC9 seems now to be able to do a new start in my game and also a restart using onplayerloadgame.  It does not show up any errors, when starting up. (On a long play session I do not know) I think Now I will not go back to Kimy's original version ?  If it is for interest I have only changed 2 small things ! (Have a look on the pictures) 1.) I have unchecked 'Start game enabled' in the DD_Library quest 2.) I start the DD_Library quest now in the OnQuestInit of the DD_ConfigQuest. Thats it.  The traces with DDX are not necessary and only for testing. I expected the OnInit Event for the DD_libraryquest to fire after the OnQuestInit of the DD_ConfigQuest, but it doesn't Reading the description again in the CK shows only that start game enabled quests are loaded as soon as possible and that the handling for the other quests is different. (No exact description) Anyway now there seems no longer a race between these 2 quests.  Regards  Edited September 30, 2023 by Kanlaon 1
Enlightnd Posted September 30, 2023 Posted September 30, 2023 As I understand it, the effect that you can't fast travel is part of DD itself and not one of the mods that use it. Â If so, could you please add a feature where you can set which items or item categories block fast travel? I'm ok with items that leave you pretty much completely defenseless not allowing you to fast travel. Â But if you only got a buttplug shoved up your ass, that shouldn't block you from fasttravel.
aslab Posted October 1, 2023 Posted October 1, 2023 (edited) Hi, I am having a small issue. It started with a fishnet dress showing up on my PC when she is nude but doesn’t show in my inventory. I would also get a message on the top left of the screen saying that an item cannot be unequipped. Now the problem has become a little worse. My PC is stopping every once in a while, to play a struggle animation as if she is in handcuffs. The handcuff meshes may even show up during the animation with my PCs hands behind her back. After the animation is completed, my PC runs around like normal and no cuffs show up in the inventory. Edited October 1, 2023 by aslab
Elsidia Posted October 1, 2023 Posted October 1, 2023 14 hours ago, Enlightnd said: As I understand it, the effect that you can't fast travel is part of DD itself and not one of the mods that use it. Nope. I know only 1 item what block fast travel. It's from DCW Jack the Belter Quest, Jack the Belter Chastity belt. Â Â
Elsidia Posted October 1, 2023 Posted October 1, 2023 (edited) 22 hours ago, Kanlaon said: RC9 seems now to be able to do a new start in my game and also a restart using onplayerloadgame. Do you have MCM mod? Edited October 1, 2023 by Elsidia
Kanlaon Posted October 1, 2023 Posted October 1, 2023 9 hours ago, Elsidia said: Do you have MCM mod? Yes I use MCM, but the MCM implementation sometimes can make troubles when you use the MCM with script variables. However, if you use MCM with settings or with Globals, i never recognized any problems with the MCM.
AlexBlack02 Posted October 3, 2023 Posted October 3, 2023 i might of skipped it but my devious devices is working up to the point an item like a locking dress or straight jacket is locked on it makes my body invisible. i have all the requirements installed first for it. how do i fix this?
izzyknows Posted October 3, 2023 Posted October 3, 2023 1 hour ago, AlexBlack02 said: i might of skipped it but my devious devices is working up to the point an item like a locking dress or straight jacket is locked on it makes my body invisible. i have all the requirements installed first for it. how do i fix this? Make sure to batch build them in BodySlide.
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