Jump to content

Recommended Posts

Posted

Hi everyone, loving the mod, playing in AE but having a problem: every time I am wearing a non armbinder device that ties up your hands (like a straightjacket) I can see a semi trainsparent, dark clouded pair of hands when I struggle. Is there any way to get rid of this? Would very much appreciate your help.

  • 2 weeks later...
Posted

Live-A-Deviant-Life_1.0.0 +  UD Incompatible.

 

example :  Normal situation  equipment Steel Chastity Belt (Padded) get zad_beltPadded_scriptInstance,  Can be unequipped normally.

 

but get the DD from LADL    :  equipment Steel Chastity Belt (Padded) get random_beltPadded_scriptInstance,   the UD get  error, try use UDdebug same cant  unequipped DD. 

 

if Aroused Too high Sometimes it gets stuck at Animation Unable to move.

 

if UD get error.  DD equipment obtained from other modules may also have these problems.

  • 2 weeks later...
Posted
On 2/20/2025 at 11:57 PM, LooksWhosHere said:

is there a way to make horny animation into orgasm animation or any files i can change?

 

There are several ways to do so.

I assume that the animation is already registered in the game's behavior files, and you know its AnimEvent (something like DDZazHornyA or NibblesFingeringN_A1_S1).

 

First way.

 

1. Open <Data>\skse\plugins\StorageUtilData\UD\Animations folder (in MO mod folder or createa an empty mod).
2. Create a json file there with trivial contents:

{
    "conditions" : {},
    "solo" : {
        "orgasm" : [
            {
                "A1" : {
                    "anim" : "<Anim event name>", 
                    "req" : 0, 
                    "opt" : 2304
                }
            }
        ]
    }
}

3. "<Anim event name>" is the name of the animation you want to use. And those magical numbers mean that this animation doesn't need any restraints to be worn.

4. Save file as UTF-8 w/o BOM (or simply UTF-8).

5. Load game. Go to the Mod settings -> Unforgiving devices -> Animations. Make sure that your file is in the list of loaded and enabled JSONs there.

 

Now mentioned animation will be played as orgasm animation during UD events.

 

Second way (modification of the first one).

 

1. Open <Data>\skse\plugins\StorageUtilData\UD\Animations folder. Find animation you want to reuse in one of the json files there in "horny" section.

"horny": [
  ...
  "A1" : {
    "anim" : "<Anim event name>", 
    "req" : 64, 
    "opt" : 2304
  }
  ...
}

2. Copy found definition to the "orgasm" section of the file.

3. This way you will keep all the necessary conditions on the worn heavy bondage, if there are any.

4. Load game. Go to the Mod settings -> Unforgiving devices -> Animations. Make sure that edited file is in the list of loaded and enabled JSONs there.

 

Third way.

 

1. Go to the <Data>\docs folder of the UD.

2. Open UD_Anim_FromMods.xls.

3. Go to the list "Struggle Animations Solo"

4. Find animation you want to reuse in the first column by its name.

5. Enter "2" in to the cell under the "orgasm" column.

w3_xls.thumb.PNG.b8b541aca0cc4f8fc8b190d1fd8f0c10.PNG

 

6. Select all rows for that mod's section (with "conditions" row) and press "Generate JSON" button on the top.

7. If nothing blows up, you'll be prompted to save a new file. In this file said animation will be defined for use in orgasm events.

8. Place created file into <Data>\skse\plugins\StorageUtilData\UD\Animations folder of the UD.

9. Load game. Go to the Mod settings -> Unforgiving devices -> Animations. Make sure that edited file is in the list of loaded and enabled JSONs there.

Posted
On 2/22/2025 at 7:54 AM, iivanvv said:

 

There are several ways to do so.

I assume that the animation is already registered in the game's behavior files, and you know its AnimEvent (something like DDZazHornyA or NibblesFingeringN_A1_S1).

 

First way.

 

1. Open <Data>\skse\plugins\StorageUtilData\UD\Animations folder (in MO mod folder or createa an empty mod).
2. Create a json file there with trivial contents:

{
    "conditions" : {},
    "solo" : {
        "orgasm" : [
            {
                "A1" : {
                    "anim" : "<Anim event name>", 
                    "req" : 0, 
                    "opt" : 2304
                }
            }
        ]
    }
}

3. "<Anim event name>" is the name of the animation you want to use. And those magical numbers mean that this animation doesn't need any restraints to be worn.

4. Save file as UTF-8 w/o BOM (or simply UTF-8).

5. Load game. Go to the Mod settings -> Unforgiving devices -> Animations. Make sure that your file is in the list of loaded and enabled JSONs there.

 

Now mentioned animation will be played as orgasm animation during UD events.

 

Second way (modification of the first one).

 

1. Open <Data>\skse\plugins\StorageUtilData\UD\Animations folder. Find animation you want to reuse in one of the json files there in "horny" section.

"horny": [
  ...
  "A1" : {
    "anim" : "<Anim event name>", 
    "req" : 64, 
    "opt" : 2304
  }
  ...
}

2. Copy found definition to the "orgasm" section of the file.

3. This way you will keep all the necessary conditions on the worn heavy bondage, if there are any.

4. Load game. Go to the Mod settings -> Unforgiving devices -> Animations. Make sure that edited file is in the list of loaded and enabled JSONs there.

 

Third way.

 

1. Go to the <Data>\docs folder of the UD.

2. Open UD_Anim_FromMods.xls.

3. Go to the list "Struggle Animations Solo"

4. Find animation you want to reuse in the first column by its name.

5. Enter "2" in to the cell under the "orgasm" column.

w3_xls.thumb.PNG.b8b541aca0cc4f8fc8b190d1fd8f0c10.PNG

 

6. Select all rows for that mod's section (with "conditions" row) and press "Generate JSON" button on the top.

7. If nothing blows up, you'll be prompted to save a new file. In this file said animation will be defined for use in orgasm events.

8. Place created file into <Data>\skse\plugins\StorageUtilData\UD\Animations folder of the UD.

9. Load game. Go to the Mod settings -> Unforgiving devices -> Animations. Make sure that edited file is in the list of loaded and enabled JSONs there.

damn man this going to take me a few weeks but I appreciate you for replying man

Posted
On 2/26/2025 at 7:13 AM, LooksWhosHere said:

damn man this going to take me a few weeks but I appreciate you for replying man

 

UDStruggle_DB_empty.json

 

Inserted the minimal json to define animation.

Open it in a text editor and change <Anim event name> to AnimEvent name for the animation you want. It is best to use notepad++, as it is more careful in handling encodings.

Then copy the file to the “<Data>\skse\plugins\StorageUtilData\UD\Animations” folder of the mod, where other files like “UDStruggle_DB_***.json” are located.

 

To test new config use Animation page in mod settings like in this post:

Use Animation type ".solo" and Keyword ".orgasm" with no Restraints to filter simple orgasm animations.

 

P.S. I'm sorry it's so confusing. When modding in Skyrim, you have to choose between spectacular and easy to use :(

Posted

Is there a way to change orgasm resistance values naturally (not by just changing the value in mcm)?
I might be tripping, but i think my orgasm res has gone up, which would be a cool side-effect of taming all the abadon plugs, i know the ring changes it, are there any other ways to change this value?

  • 2 weeks later...
Posted (edited)

Can children be excluded from this mod's dialogue?

 

I get "Please help me" when interacting with a child, can pay them for the service and then have the box with list of devices appear. I did not go any further than that, nor did I test if refusing to pay will trigger force equipping of additional devices because my stomach turned at the possible implications.

 

This is just wrong.

Edited by belegost
Posted

So I was trying to make a synthesis patch for this and Devious Devices NG, but for whatever reason the settings in Synthesis were completely blank. Any ideas what I could be missing? Tried following the directions I found on the github, but tbh, I wasn't sure I was doing it right anyway.

Posted

Hi!

Is it possible to make  humble request?

Would it be possible to patch Devious Deviants devices in next UD 3.0 version? (which looks quite advanced in the nightly release, actually)

 

 

For those that don't know, this is a rather old quest in which the orc traps you pluged in a chastity belt for trying to rob him.

 

Laters you get filled with devices that reacts to you casting spells.

 

This was a very clever design for a mage build, which... well.. had plenty of troubles when casting spells.

 

Last time I tried to play it, one of the lugs were missing and it didnt behaved well with UD.

In any case:

 

- I believe there are only 4-6 devices in the mod.

- the idea itself of a plug turning on when casting spells is awesome.

 

Posted

I tried searching for this issue but didn't see others with similar issues.  

My UD works when I start a new game, but once I load it, it always tries updating and either is unresponsive, or more often is stuck at 14%.  

Any idea why?  Can I turn off updating?

Posted

Hello ihatemykite,

 

it's been a while, but I'm playing again and of course using your epic mod. Latest version on SE (not AE)

 

I saw your name at DD NG, but I didn't see anything about it here. Does UD support DD NG?

 

A corner case issue

Setup: Have a sentient Arm Cuff on the character + something else, like a gag, high level, so it takes time to remove it. Select the gag, start struggling. Use the "." key (select last device) to continue working on it again.

Issue 1- If the sentient cuffs activate the cuff's special feature, the Tie up hand, you can still use the "." button to work on the gag.

Issue 2 - When you finish the gag, you go into a "stuck in bondage" situation, because the "." button returns an UD error (can't select the last DD), and you also can't use your inventory while your hands are tied behind your back.

I could fix it with the debug features.

 

Btw, I also had an issue when equipping any bondage started to rise Arousal at once in an endless loop. I don't know what could have caused it, it was in the save game I used after like a year of break, but the debug menu solved that one too.

 

 

Using keys

In the above example I tried to use a Restraint key to open the cuffs. After 2 long struggle sessions, I didn't have a single critical hit to react to (the green/blue colors). Is this intentional? Did I have too much negative modifier maybe?

 

 

High level DD escape

In my current game I encounter lvl 65-75 restraints. The escape difficulty is set to the highest in MCM.

 

It seems to me that the struggle options really start to become quite useless at this level, even with very high related skill levels. For example the "Struggle Moderately" option with 100+ Pickpocket didn't move a strait jacket's health enough to be useful, the DD healed more and I even have triple time (timescale 6). And it was somewhat weak against it, like 50% or under. It also didn't help that the jacket periodically used the vibrators continuously for 5(!) minutes regularly. Same with "Desperate struggle" and "Cut" (with a %137 weapon).

 

The only visible progress I could see was the "Struggle with the help Magic", but even this took literal hours to destroy one quality bar. This was a bit strange too, because the DD had very good resistance against magic, 150 at start.

 

So basically the only thing that worked was what the DD had the best resistance against.

 

Now I'm not saying that this is all bad, it just feels unbalanced at the high tiers. I also didn't have a Helper with me, who could have probably helped.

 

 

Bug or feature?

The aforementioned strait jacket also had the power to spawn and equip new restraints. Is it allowed to manifest DDs on protected areas? I think about under Chastity Belt and Bra. Normally you can't equip a plug or nipple piercing when the character wears Chastity gear. But we are also talking about magical restraints, so I can imagine to bypass the restriction. The strait jacket did so, equipped clit piercing under an unremovable Quest Chastity Belt (Pet Project). That of course can cause a lot of problems, basically inescapable restraints. So 2 questions:

- Is it okay for UD to create DDs under worn Chastity devices?

- If yes, would it be possible to add an Option to avoid these? It would help with the compatibility with other mods.

 

For now I'll just equip a piercing so the slot will be occupied.

 

 

Peace,

M

Posted (edited)
44 minutes ago, monsta88 said:

Does UD support DD NG?

Works fine with DD5.2 and DDNG 0.3.7. I did not update to DDNG 0.4 yet. I'm waiting for it to be ironed out a bit more. I am on 1.5.97.

Edited by belegost
Posted
8 hours ago, slonez1 said:

I tried searching for this issue but didn't see others with similar issues.  

My UD works when I start a new game, but once I load it, it always tries updating and either is unresponsive, or more often is stuck at 14%.  

Any idea why?  Can I turn off updating?

I had a similiar issue once. I think i saved a game while UD was still upgrading and that was "backed" into the save (and any further saves). I had to find a save where that issue wasnt allready there. Now i allways do wait to let UD finish "update", before i save. It might happen with quicksave or autosave on, which i dont use for a while now anymore. Hope this helps.

Posted
13 hours ago, monsta88 said:

Hello ihatemykite,

 

it's been a while, but I'm playing again and of course using your epic mod. Latest version on SE (not AE)

 

I saw your name at DD NG, but I didn't see anything about it here. Does UD support DD NG?

According to DD NG 0.4 you will need to download nightly reléase (in git hub) and create you own patch.

 

 

 

"

 

Unforgiving Devices users:

 

If you are using UD 2.1.1, do not use it with NG - it will break things!

 

Either:

 

update to the GitHub nightly release version of Unforgiving Devices, do not install the DD 5.2 patch and create a new one yourself using the Synthesis patcher

… or wait until the LL version updates."

 

 

I tried. Failed.

 

 

 

So I'm patiently waiting for this awesome mod to update ^_^.

 

In the meantime...

 

If you like UD you shouldn't miss Unforgiving skyrim. It's a mod that uses this one as a base.

 

It's awesome.

 

 

 

 

Posted (edited)
19 hours ago, slonez1 said:

I tried searching for this issue but didn't see others with similar issues.  

My UD works when I start a new game, but once I load it, it always tries updating and either is unresponsive, or more often is stuck at 14%.  

Any idea why?  Can I turn off updating?

This should completely reset updating process.

 

Next time, after game start/load, wait for update finishes before doing anything (esp. making save), it makes this problem.

Edited by jouda1212
Posted
On 3/25/2025 at 7:55 PM, jouda1212 said:

This should completely reset updating process.

 

Next time, after game start/load, wait for update finishes before doing anything (esp. making save), it makes this problem.

This looks very promising! I will try it right away.  
I waiting at least 20 minutes to save the last time I tried, with same success.  Reading above, it could be related to trying to use it with DD-NG.

Posted (edited)
On 3/25/2025 at 10:38 PM, try again. said:

Unforgiving Devices users:

 

If you are using UD 2.1.1, do not use it with NG - it will break things!

Works fine out of the box with NG 0.3.7. No patches were necessary. Whatever issues are there, are most probably tied solely to NG 0.4.

 

On 3/25/2025 at 10:38 PM, try again. said:

If you like UD you shouldn't miss Unforgiving skyrim. It's a mod that uses this one as a base.

 

It's awesome.

No. I hate Nodaba. She's a cunt.

Edited by belegost
Posted

Can anyone help me out on creating a synthesis patch for UD to make it work with the new version of DDNG? I tried following the steps listed on the UD Script git page, but for some reason I can't make heads or tails of how to make it work for me.

Posted

Love the mod so far!

 

Just wondering, probably a configuration error on my end, but it seems the UD orgasm system doesnt follow the arousal system? Occasionally I get mod notification that PC is horny but SLA is very low. It's not game breaking at all, just wondering if UD works on its own independent system which is cool, or if it's a configuration issue.

 

I'm using SexLabAroused Redux V28b SSE Modified by BakaFactory(2020 11 17))

Posted

I've installed nightly build to enable DD NG compatibility but I have this error upon hitting . when under restrains

[03/30/2025 - 02:15:23PM] [UD,!ERROR!,T=2438.193115]: Can't set lastOpenedDevice
 
Anyone has a tip to fix?

 

 

Papyrus.0.logimage.png.da9bf8e96069a85a958ec951650ce442.png

Posted (edited)
3 minutes ago, Fraying9981 said:

I've installed nightly build to enable DD NG compatibility but I have this error upon hitting . when under restrains

[03/30/2025 - 02:15:23PM] [UD,!ERROR!,T=2438.193115]: Can't set lastOpenedDevice
 
Anyone has a tip to fix?

 

It's not an error per se. It simply means there's no last opened device(maybe it was removed) or heavy bondage one. To designate new last opened device press and hold . button.

 

Regarding arousal system - UD NB requires OSL Aroused.

Edited by kurotatsu
Posted
21 minutes ago, kurotatsu said:

 

It's not an error per se. It simply means there's no last opened device(maybe it was removed) or heavy bondage one. To designate new last opened device press and hold . button.

 

Regarding arousal system - UD NB requires OSL Aroused.

 

thank you!

may I ask if UD system is only for the UD devices or also for the standard DD devices?

If it's only for UD devices, how does one find these devices?

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...