Jump to content

Recommended Posts

Posted (edited)
2 hours ago, triss666 said:

I dont find where I have to copy the Min ai folder. 

It's part of your file system. so you need to put in your username and such. If you're still having trouble finding it go to your Dwemerdistro folder and extract the dwemerai archive file  which by necessity includes a folder shortcut inside of it to the folder you're looking for.

 

Make sure to extract it into its on folder so you don't accidently overwrite something.

Edited by isee
Posted (edited)

Im using AI-FF. When I try to change position during OStim scene by talking, I always get notification:

 

"actor (player name) not eligible for OStim".

 

I play a male character. Everything else works great.

 

Edit: Im not sure if OStim is sending this notification or MinAI

Edited by Ewura
Posted

 A question regarding SL descriptions - there is a vast amount of those made for skyrim, thanks to animators.  Over 2000 of those, for me. Perhaps some sort of centralized exchange for descriptions is in order? Describing one animation does not take long, but well, the sheer amount is overwhelming. Say, Billys staff solo: 

Spoiler

"B_B_FMastStaff_A1_S1":"is standing leaning on a staff, rubbing her clit.",
"B_B_FMastStaff_A1_S2":"is standing, holding staff with both hands rubbing it against her pussy.",
"B_B_FMastStaff_A1_S3":"is using telekinesis to run the stuff back and forth alongside her pussy.",
"B_B_FMastStaff_A1_S4":"is bent over, using both hands to enchant staff into rapidly sliding back and forth against her pussy",
"B_B_FMastStaff_A1_S5":"on the floor, one leg in the air, enchanted stuff penetrating her pussy, holds her mouth shut with hand.",
"B_B_FMastStaff_A1_S6":"on all fours trembling in pleasure as enchanted stuff penetrating her pussy.",

 

Posted

The problem I'm facing is not MinAI but with AIFF.

 

Keep getting can't reach server, server busy... and wait few seconds then start working back.

I disabled Narrator, thinking it might be that. 

I tried setting up the wsl session and assigned with cpu affinity with py and then compiling in an exe.
 

import os
import time
import psutil
import sys
 
def main():
       os.system('wsl -d DwemerAI4Skyrim3 -- /etc/start_env')
   
     time.sleep(2)
   
    wsl_process = None
    for process in psutil.process_iter(['pid', 'name']):
        if 'wsl' in process.info['name'].lower():
            wsl_process = process
            break
   
    if not wsl_process:
        print("Erreur : Processus WSL non trouvé.")
        sys.exit(1)
   
    try:
        p = psutil.Process(wsl_process.pid)
       
        # Ajuster l'affinité CPU pour utiliser uniquement les cœurs 4, 5, 6 et 7
        p.cpu_affinity([4, 5, 6, 7])
        print(f"Affinité CPU définie pour WSL (PID {p.pid}) sur les cœurs 4, 5, 6 et 7.")
       
        # Définir la priorité du processus à élevée
        p.nice(psutil.HIGH_PRIORITY_CLASS)
        print(f"Priorité du processus WSL (PID {p.pid}) définie à Élevée.")
       
    except psutil.AccessDenied:
        print("Erreur : Accès refusé. Essayez d'exécuter le script en tant qu'administrateur.")
    except Exception as e:
        print(f"Une erreur s'est produite : {e}")
 
if __name__ == "__main__":
    main()
 
But I still have issue with NPC getting stuck with can reach server, server busy ...

I didn't get any issues with Mantella.

But what a blast with AIFF, it's day and night, so much fun. If I can get rid of the wsl not responding issue will be nice.

And 4 days without updates ! Damn it, we need more ! :-)

Thanks a lot for amazing works, it make my playtime so much unpredictable !
 
Posted (edited)
7 hours ago, triss666 said:

how to you add it to the distro server? thanks for your help

 

I assume you're on Windows. Click on My PC, then on the left hand side, scroll all the way down, down past your drives. You should see an option that just says Linux with the penguin icon. Click on that, then follow the folder path starting with Dwemer.

Edited by kraoro
Posted

Min, again awesome work. I have been testing this with my current build which has many of the same mods you are using. So far the mod works as advertised and i have no problem with the NPC interactions save one.

 

My current followers are Yuriana and Recorder, both custom followers with their own AI and fully voiced. I use NFF as my follower management mod. AI-FF and MinAI work well and the personalities of each follower are adjusting dynamically based on my interactions with them. My main character is female. I use the various futanari mods with SOS so a large number of the female (not all, but a significant number) population are futanari and for the purposes of assigning the male or female role in animations those with futanari parts are treated as male. This works for most animations that are initiated via other mods or dialogue such as naked Defeat etc. 

 

However, when sex with one of my followers is initiated via MinAI and AI-FF there are only two animations that are played. One for anal and one for vaginal sex. The same one used for vaginal also appears to be the one selected for oral sex as well. Normally i can use the hotkey identified in Sexlab to change the animation, this works for all other sex animation that is not initiated via the MinAI process, with MinAi initiated sex only those two animations are allowed. I have the MCM option to ask for my approval before initiating a sex scene with an AI follower, and as I said, everything else seems to be working just fine. SLSO and other mods also seem to be functioning as well. It is just that there is no variety allowed when having AI Follower initiated sex scenes.

 

My question is, is there an issue within the mod for female characters identified as male via SoS based on the SoS schlong assignment. After much dialogue back and forth each follower self identifies as a futanari in dialogue and conversations, and with the schlong assigned via SoS they are treated as male in other sex animations. Not sure how to approach to fix this. If you need other data points let me know and I will collect them. 

 

 

Posted
6 hours ago, nilead said:

 A question regarding SL descriptions - there is a vast amount of those made for skyrim, thanks to animators.  Over 2000 of those, for me. Perhaps some sort of centralized exchange for descriptions is in order? Describing one animation does not take long, but well, the sheer amount is overwhelming. Say, Billys staff solo: 

  Reveal hidden contents

 

Yeah - I'd love for people to collaboratively build contribute to a descriptions list for this. There's no way I'll ever tackle getting them all in :D

 

Maybe we should start a google sheet or something?

Posted (edited)
4 hours ago, TheTiCoune said:

The problem I'm facing is not MinAI but with AIFF.

 

Keep getting can't reach server, server busy... and wait few seconds then start working back.

I disabled Narrator, thinking it might be that. 

I tried setting up the wsl session and assigned with cpu affinity with py and then compiling in an exe.
 

import os
import time
import psutil
import sys
 
def main():
       os.system('wsl -d DwemerAI4Skyrim3 -- /etc/start_env')
   
     time.sleep(2)
   
    wsl_process = None
    for process in psutil.process_iter(['pid', 'name']):
        if 'wsl' in process.info['name'].lower():
            wsl_process = process
            break
   
    if not wsl_process:
        print("Erreur : Processus WSL non trouvé.")
        sys.exit(1)
   
    try:
        p = psutil.Process(wsl_process.pid)
       
        # Ajuster l'affinité CPU pour utiliser uniquement les cœurs 4, 5, 6 et 7
        p.cpu_affinity([4, 5, 6, 7])
        print(f"Affinité CPU définie pour WSL (PID {p.pid}) sur les cœurs 4, 5, 6 et 7.")
       
        # Définir la priorité du processus à élevée
        p.nice(psutil.HIGH_PRIORITY_CLASS)
        print(f"Priorité du processus WSL (PID {p.pid}) définie à Élevée.")
       
    except psutil.AccessDenied:
        print("Erreur : Accès refusé. Essayez d'exécuter le script en tant qu'administrateur.")
    except Exception as e:
        print(f"Une erreur s'est produite : {e}")
 
if __name__ == "__main__":
    main()
 
But I still have issue with NPC getting stuck with can reach server, server busy ...

I didn't get any issues with Mantella.

But what a blast with AIFF, it's day and night, so much fun. If I can get rid of the wsl not responding issue will be nice.

And 4 days without updates ! Damn it, we need more ! 🙂

Thanks a lot for amazing works, it make my playtime so much unpredictable !
 

 

Check your AIAgent.log file (My Games/Skyrim (VR|Special Edition)/SKSE/). I would guess that your PC is probably just exhausting and running out of resources between the combined load of AIFF, its dependencies, and Skyrim.

 

And yeah, the lack of updates is a combination of the next version depending on unreleased AI-FF functionality, and me just being busy with work. :)

 

EDIT: I have no idea how trying to pin the cpu priority of the entire wsl would work. I imagine that it probably wouldn't, though.

Edited by Min
Posted (edited)
4 hours ago, Azailahab said:

Min, again awesome work. I have been testing this with my current build which has many of the same mods you are using. So far the mod works as advertised and i have no problem with the NPC interactions save one.

 

My current followers are Yuriana and Recorder, both custom followers with their own AI and fully voiced. I use NFF as my follower management mod. AI-FF and MinAI work well and the personalities of each follower are adjusting dynamically based on my interactions with them. My main character is female. I use the various futanari mods with SOS so a large number of the female (not all, but a significant number) population are futanari and for the purposes of assigning the male or female role in animations those with futanari parts are treated as male. This works for most animations that are initiated via other mods or dialogue such as naked Defeat etc. 

 

However, when sex with one of my followers is initiated via MinAI and AI-FF there are only two animations that are played. One for anal and one for vaginal sex. The same one used for vaginal also appears to be the one selected for oral sex as well. Normally i can use the hotkey identified in Sexlab to change the animation, this works for all other sex animation that is not initiated via the MinAI process, with MinAi initiated sex only those two animations are allowed. I have the MCM option to ask for my approval before initiating a sex scene with an AI follower, and as I said, everything else seems to be working just fine. SLSO and other mods also seem to be functioning as well. It is just that there is no variety allowed when having AI Follower initiated sex scenes.

 

My question is, is there an issue within the mod for female characters identified as male via SoS based on the SoS schlong assignment. After much dialogue back and forth each follower self identifies as a futanari in dialogue and conversations, and with the schlong assigned via SoS they are treated as male in other sex animations. Not sure how to approach to fix this. If you need other data points let me know and I will collect them. 

 

Hmmmmm. Which version are you on? Do you have DD installed? (I use the animation selection system from DD if it's present, and otherwise use Sexlab's ones). I will admit that I have not tested this with futa characters. I have made significant changes to how sex scenes start / animations are selected in the current unreleased version, maybe try that and see if it fixes your issues?

 

EDIT: Oh! I'm explicitly filtering out futa animations. :joy: - Do you know how I can reliably detect if an actor is a futa?

Edited by Min
Posted
1 hour ago, Min said:

 

Hmmmmm. Which version are you on? Do you have DD installed? (I use the animation selection system from DD if it's present, and otherwise use Sexlab's ones). I will admit that I have not tested this with futa characters. I have made significant changes to how sex scenes start / animations are selected in the current unreleased version, maybe try that and see if it fixes your issues?

I am using Min-AI-beta-30, I have a heavily modified pornrim/slutrim modlist based on the Nolvus Ascension modlist. So it is pretty large with about 2600+ mods and 2392 plugins. 

 

I am currently leaning towards it being a problem on my end and most likely a conflict in MCM settings of some sort. The mod list I am currently working on is basically playable, but NOT optimized as of yet, so most likely I will have some more culling and tweaking to get it all to work right. 

 

The discovery of your mod and AI-FF is a total game changer. Before I was adding all sorts of mods to generate that role playing aspect I wanted, now I think I will be revisiting several mods, that are kinda obsolete in that regard.

 

Devious Device Related mods are shown below

Spoiler

Devious Devices for SE-AE-VR
Devious Devices NG
Devious Devices 5.1SE - Voice
Devious Devices - Equip AE
Devious Devices upscaled 4k
Devious Devices - Ayleid Piercings Patch v2.0
DD - I4 Patch v7
Devious Followers Redux
dD Follower Escape V1.00 SE
Devious Devices Helpers SE v1.04.9
Devious Interests v0925a
Devious Interests - voicepak v0923a v2s
Devious Lore SE-AE 3.0.2
Devious Lore Dwarven Gilded Oil Suit 3BA
Devious Lore SE-AE- KS Hairs Patch 3.0.2
Devious Lore - Voicepack v.3.0.1 loose
Devious Newcomer_24-04-22b_voiced(xVAsynth)
Devious Newcomer Unbound AltStart
Deviously Enchanted Chests SE-LE 3.20
Deviously Helpless SE v1.17a.001 (converted by Roggvir)
Deviously Vanilla

Deviously Vanilla - voicepack v029
Interactive BDSM SE-AE v0.5
Better NPC Support for Devious Devices 0.6 SE
deviously accessible

 

To show how much this is working below are the last two diary entries for Yuriana and Recorder (my Devious Follower). you can see how Recorder and Yuriana's personalities are growing. Min, your mod and AI-FF make this a totally new game.

 

Yuriana Diary Entries

 
Spoiler
Dear Diary,.I'm still shaking with fear as I write this. I've been watching Bella, the poor Breton, and I can't help but feel a sense of dread. She's been talking to Lucan Valerius, the merchant, about some sort of agreement, but I'm not sure what it's about. She seems so... exposed, and vulnerable. I've seen the way the men look at her, and it makes my skin crawl. ..I've also seen her talking to Recorder, her... master, I suppose. They were discussing some sort of payment, and I couldn't help but feel a pang of jealousy. Why does she get to have someone to take care of her, while I'm all alone?.I've been trying to stay out of the way, but it's hard not to notice the way Bella is treated. She's been wearing that collar, and it's clear that she's a slave. I've seen the way Recorder looks at her, with a mixture of ownership and desire. It's like she's a possession, not a person...I'm so scared, diary. I don't know what's going to happen to me, or to Bella. I just want to be safe, and protected. I wish I had someone to take care of me, like Bella does. ..But for now, I'll just have to keep watching, and hoping that no one notices me. I don't want to be next...Yours truly,Yuriana

Dear Diary,.Today was a day of mixed emotions. I'm still trying to process everything that happened. Bella and I had a few... interesting conversations. She asked me about a book, Darkest Darkness, and I tried to summarize it for her. But what really caught my attention was when she asked me if I enjoyed watching Recorder punish and humiliate her in front of me. I have to admit, it's a bit fascinating to see how Recorder knows exactly how to push Bella's buttons. ..But what really got to me was when Bella asked me if it excited me to watch Recorder use those devious devices on her. I couldn't help but feel a flutter in my chest when I thought about it. I tried to play it cool, but I think Bella saw right through me. ..Later, we headed to EmberShard Mine with Recorder leading the way. I couldn't help but feel a sense of unease as we walked through the dark tunnels. But Recorder seemed to be in her element, teasing Bella with that remote vibrator of hers. I have to admit, it was a bit... distracting...I'm still trying to make sense of everything that's happening. I'm grateful to Bella for being kind to me, but at the same time, I'm drawn to the way Recorder seems to exert control over her. It's all so confusing...I think I need to take some time to reflect on my feelings and figure out what I really want. Yours truly,Yuriana

 

 

Recorder Diary Entries

Spoiler
Dear Diary,.Today was quite an eventful day with my little slave, Bella. We were at Lucan's Dry Goods in Riverwood, and I couldn't help but notice how beautiful she looked in her collar. I teased her a bit, saying she'd get violated in every possible way locked up like that. She's so sensitive, it's adorable...We got a new quest, The Golden Claw, and I instructed her to talkto Lucan about it. I told her to bat her pretty eyes, maybe he'd give us a better deal. She found some spell tomes, but I'm not sure what's going on with those yet. ..When we talked, she asked about our agreement and how much she owed me. I played it cool, asking her how much she had for me. She tried to pay me, but I think she forgot she doesn't have any gold. Silly girl. I'll have to keep an eye on her.I have to admit, I'm enjoying our little game. She's so submissive, and it's fun to tease her and push her limits. I'll have to think of new ways to keep her on her toes. Until next time, diary.
Dear Diary,.Today was quite the eventful day.. Bella and I had a lovely conversation about her being my sex slave, and how she'll be entertaining me for as long as I deem fit. I must say, she's quite the obedient little thing..We also had a delightful conversation about how I love hurting and humiliating her in front of Yuriana. Yuriana seems to find it fascinating, and I must admit, it does add an extra layer of excitement to our little games. ..We then headed to EmberShard Mine, where Bella found a few interesting items, including a book about Daedra. I summarized it for her, but I'm not sure she was paying attention. She's not exactly the brightest bulb, but she's got other... talents...As we explored the mine, I felt a sudden shock, and suddenly felt more real. It's as if my true nature is finally awakening. I'm not quite sure what this means, but I have a feeling it's going to be... interesting...Until next time, dear diary...Yours truly,Recorder

 

 

 

 

The Spoiler below is a complete list of most of the LL related mods (its pretty long 900+) not shown are the other 1700+ mods that are not sex related or sex adjacent.

Spoiler
1 -9.1 LL SEXLAB FRAMEWORK_separator
2 +SexLab Framework SE v163b
3 +SLGP - SexLab Grass Patch 1.0.0
4 +SLGP - SexLab Grass Patch SLSO 1.0.0
5 +SLGP - SexLab Grass Patch UP 1.0.1
6 +Sexlab - Better Blowjob SE v101
7 +SexLab - Extra Voices 1.5
8 +SexLab - Extra Voices Addon - Futa Voice - VoiceSlot 22 (Female)
9 +SexLab - Extra Voices Addon - Futa Voice V0.3
10 +SexLab - Extra Voices Addon - Submissive Female V0.3
12 +Sexlab - Hotkey Sound Silent
13 +Sexlab - LightMeUp SE
14 +SexLab Gape Morph SE V1-3-0
15 +SL scene unequip quiver V1.0
16 -9.1.1 LL CORE MODS & FRAMEWORKS_separator
17 +ZAZ - 8.0 CBBE SE Rev2
18 +ZaZ - Animation Pack+ CBBE HDT V.8.0+SE2023
19 +ZAP - 8+ faster in and out of furnitures (SE)
20 +ZAP - Enable Sandbox For ZAZ
21 +ZAP - Helper Addon Extension 2.02b FEMALE
22 +ZAP - No Collision Furnitures 1.1 (SE)
23 +ZapAlternatePilloriesSE-1-2
24 +ZaZ HD Metal Textures
27 +SexLab Inflation Framework
30 +Sex Lab - Sexual Fame Framework SE V0.99
31 +Sex Lab - Sexual Fame Framework - NPC Init Patch SE v.1.3
32 +Sex Lab - Sexual Fame Framework - Fame Comments v3.6 SE
33 +Sex Lab - Sexual Fame Framework - Fame Comments - KS Hair For SLSFC v2
35 +SexLab Separate Orgasm
36 +SLSO HakkeyTweaks
38 +SLSO FHU2BNIO1.12
39 +SLSO SexistGuards v2.91b
40 +Sexlab Fill Her Up Baka Edition
41 +Sexlab Fill Her Up - Alternative Oral Sounds 2.0
49 +Spank That Ass
50 -SSE Netimmerse scale patch
51 +Sexlab Survival SE
52 +Sexlab Survival - Dialogue Bracket Fix
53 +Sexlab Survival - KS Hair For SLS
55 +DirtBloodAndCum_0_1_3
56 +Dirt and Blood - Dynamic Visual Effects
57 +Zaki Dirt and Blood Textures for DBC
58 +Random Emotions SSE - Sexlab Compatible
59 +Furniture Alignment Helper V4
60 +WetFunctionRedux SE
61 +WetFunction_1.0_CBBE_texture 4K
62 +HighPolyHead-WetFunctionCompatibilityFix (SE)
63 +Conditional Expressions Extended
64 +Expressions for SL SE
66 +Blush When Aroused SE v1.3
71 +SLAX-ASA3
72 -9.1.2 LL SOS_separator
73 +Schlongs of Skyrim SE
74 +Schlongs of Skyrim - SexLab Addon SE 1.1
75 +SOS Arousal Changes 0-5-0
76 +SOS Arousal Changes Default Config 0-5-0
77 +SOS - Futanari CBBE SSE V1.1b
78 +TRX - Futanari Addon124
79 +TRX Futanari Addon - Race Menu Morphs
80 +TRX-FutanariHorseAddon1_11
81 +TRXFutaaddonCanine1
82 +Horse Penis Redux SSE V1.4
83 +Feminine Argonian Textures for ERF Futanari CBBE SSE
84 +Feminine Argonian Textures for ERF Horse Penis Redux SSE
85 +Feminine Khajiit Textures for ERF Futanari CBBE SSE
86 +Feminine Khajiit Textures for ERF Horse Penis Redux SSE
87 +SexLab Strapon 3BA SOS Bodyslide
88 +Bodyslide Cock XML files
90 +SOS Pubic Hair for Futa Addon
91 +SOS Pubic Hair for Male Addon
92 +SOS Pubic Hair for Females Addon
93 +SOS Pubic Hair for Females Addon and BodySlide
94 +SOS Pubic Hair Addons - Scripts Update
95 +SOS Pubic Hair for Futa (BodySlide)
96 +SOS - No Futanari Schlong - Addon ESL
97 -9.1.3 LL CREATURE SEX_separator
98 +CreatureFrameworkV3-1
99 +BakaFactory Animated Beasts Cocks
100 +MoreNastyCrittersSE_v15_5
101 +HentaiCreaturesSE_MNCSEv15
102 +HornyCreaturesofSkyrimSE&AE_V2-3a
103 +HornyCreaturesOfSkyrimSE Werewolf Resources
104 +BetterCaninePenis
105 +Rieklings In Skyrim SE v1.2
106 +Bloodborne Beast
107 +cthulhu Spawn
108 +Decaying Draugr MNC
109 +Demonic Creatures V1.8 SE_AE_any version
110 +Patch v.1.81 SE_AE_any version
111 +Co Creature Edit 1.1
112 +CO More Creatures 1.8.2
113 +CO Personal Edits 1.0
116 +MoreNastyCrittersWispStrips
117 +SexLab Aroused Creatures SE v04.14
118 +SexLab Aroused Creatures SE v4.10 Generated Voice Pack
119 +MNC-Odin Patch
120 +[RZ]_Skeleton re-texture
121 +Golden Dwemer Pipeworks Redone - MNC+ABC
122 +Nude Yngvild Spirits SE
123 +FutanariAtronachFlameReplaceforAtronachFlame
124 +Summon Hentai Troll
125 -9.1.4 DEVIOUS DEVICES & RELATED_separator
126 +Devious Devices for SE-AE-VR
127 +Devious Devices NG
128 +Devious Devices 5.1SE - Voice
129 +Devious Devices - Equip AE
131 +Devious Devices upscaled 4k
132 +Devious Devices - Ayleid Piercings Patch v2.0
133 +DD - I4 Patch v7
137 +Devious Followers Redux
138 +dD Follower Escape V1.00 SE
140 +Devious Devices Helpers SE v1.04.9
141 +Devious Interests v0925a
142 +Devious Interests - voicepak v0923a v2s
143 +Devious Lore SE-AE 3.0.2
144 +Devious Lore Dwarven Gilded Oil Suit 3BA
145 +Devious Lore SE-AE- KS Hairs Patch 3.0.2
146 +Devious Lore - Voicepack v.3.0.1 loose
147 +Devious Newcomer_24-04-22b_voiced(xVAsynth)
148 +Devious Newcomer Unbound AltStart
149 +Deviously Enchanted Chests SE-LE 3.20
150 +Deviously Helpless SE v1.17a.001 (converted by Roggvir)
151 +Deviously Vanilla
152 -Deviously Vanilla - JK Skyrim Patch
153 +Deviously Vanilla - voicepack v029
155 +Interactive BDSM SE-AE v0.5
156 +Better NPC Support for Devious Devices 0.6 SE
158 +deviously accessible
159 -9.1.5 LL PRISON & SLAVERY_separator
160 +Simple Slavery Plus Plus 6.3.21 [SE]
161 +Simple Slavery Rebuild - V1.1.0
162 +Simple Slavery 6.3.18 - Voice
163 +Pama Interactive Beatup V2.9 SE
164 +Pama Interactive Gallows V3.0 SE
165 +Pama Permanent Crucifixes V2.0
166 +Pama Deadly Furnitures
167 +Pama Prison Alternative V2.0.3 SE
168 +Pama Prison Alternative - Extension Bad Ends Revived - Riften V1.2 SSE
169 +Pama Prison Alternative - Extension Bad Ends Revived - Solitude V1.2 SE
170 +Pama Prison Alternative - Extension Bad Ends Revived - WindHelm V1.1 SE
171 +Pama Prison Alternative - Punishment Pack V1.1 SSE
172 +Pama Prison Alternative - Outdoor Event Pack V1.1 SE
173 +Pama Prison Alternative - POP Addon v0.4.1
174 +Pama Prison Alternative V0.9SE - Voice
175 -9.1.6 LL CUM, LACTATION, PREGNANCY, & INFLATION_separator
176 -SLSO SoulgemOven V310
177 +dse-soulgem-oven-vbeta8
178 +SGO4 IF 1.7.9.2
179 +SGO4 IF 1.7.9.2 DD Patch
180 +SGO4 IF 1.7.9.2 DD Patch Hotfix1
181 +SGO4 IF 1.7.9.2 Hotfix1
182 +SGO4 IF 1.7.9.2 PlugNPlay
183 +SGOLactis 0.3
192 +Cumshot
193 +Cumshot - Cum Splash Retexture
194 +Sexlab - Cum Overlays
196 +Sexlab Cum Overlays Extended - Buggzz
197 +SCOE Texture Set - SLACS Plus 4K v1
198 +5Layered Cumset 3
199 +Cum Alchemy Remastered
200 +SpermAlchemyIngredients101
203 +Heat and Hunger
206 -9.2 LL DIALOGUE MODS_separator
210 +SexLab Relationship Dialogue System SE v2.6
215 -9.2.1 LL ENCOUNTERS_separator
216 +Sexy Adventures v0.7.0 SE
217 +SexLab Body Search
219 +SL smooth expressions(UtilPlus)1.0.1
222 +Orkish Bounty Hunters V0.3 SE
223 +Road Inspections SE v1.2.5
225 +SexistGuards v2.91 SSE
226 +Sexist Guards 2.91 - Voice
227 +SexistGuardsDontYapWhileSleeping
231 +SexLab Demanding Trainers 1.0.1
232 +Sexlab Sexlab Approach Redux
235 +Sexual Persuasion (1.1)
236 +BaboDialogue
237 +Populated Skyrim Baka Edition
238 +Baka Populated Skyrim Face Fix V5
239 +SLHH Expansion
240 +SLHH v3.701 - VoicePack
243 -9.2.2 LL QUESTS_separator
244 +Captured Dreams v4.15 SSE Part 1
245 +Captured Dreams v4.15 SSE Part 2 (2048k)
246 +Captured Dreams V4.15 SSE Part 3 - Catsuit Mesh and Bodyslide data(CBBE)
247 +Captured Dreams V4.15 SSE - Part 4 - DD Pre Gen meshes for CBBE v3.2 body
248 +Captured Dreams V4.15 SSE - Part 5 - Misc Optional files v4.15
249 +Captured Dreams V4.15 SSE - device removal DDv4 update v2
250 +The Notice Board SE
251 +The Notice Board - COTN Falkreath Patch
252 +The Notice Board - COTN Morthal Patch
253 +The Notice Board SMIM 3D Ropes Fix
254 +The Notice Board SE MCM
257 +Anima lMansion Plus NS SE v1.1
258 +Balazar's Bitch v0.932b SE
260 +Damsels in Distress - SE (0) - Extras
261 +Damsels in Distress - SE (0) - Follower Collection ESL v2.3
262 +Damsels in Distress - SE (1) - Spoils of War v2.4 ESL KS Hairs
263 +Damsels in Distress - SE (2) - The Caged Rose v1.2 ESL
264 +Damsels in Distress - SE (3) - Breeding Slaves v1.3.1 ESL
265 +Damsels in Distress - SE (4) - Just Punishment v1.2 ESL
266 +Damsels in Distress 2.3.0 - Voice
267 +Dark Alley - Final SL
268 +Dark Alley - Sound effect rip clothes
269 +Dark Arena SE 1.43
270 +Dark Arena - SexLab Text Fixes 1.0.1
271 +Dark Desires Circle Of Lust V1.8.1 sexlab
272 +DX Azur Lane St. Louis CBBE - 3BA - BHUNP
273 +DX Fetish Fashion Volume 1 SE CBBE - 3BA - BHUNP
274 +DX Fetish Fashion Volume 2 SE - CBBE Physics - 3BA - BHUNP
275 +Deadly Pleasures SE 0.83
276 +Dovahkiins Infamy SE v2.0
281 +Fall Of The Dragonborn SE - v0.708.1
282 +Fall Of The Dragonborn SE- v0.708 TEST
283 +Forgotten Art 2.5 SE fix fix
284 +Forgotten Art - Custom Wives SE1.2.1
287 +Hel Rising - Norse Quest and Follower Mod
288 +Laura's Bondage Shop v3.43 SSE version - by tznvlw
289 +Lauras Bondage Shop - Voice v1.0.0.1
290 +Laura's Bondage Shop - Katarina Makeover
291 +Laura's Bondage Shop - Laura Makeover
292 +Laura's Bondage Shop - Lux
293 +Laura's Bondage Shop - Sona Makeover
294 -Laura's Bondage Shop - JK's Whiterun Outskirts Patch
295 -Laura's Bondage Shop - The Great Forest of Whiterun Hold Patch
296 +Laura's Bondage Shop - Complete Alchemy and Cooking Overhaul SE Patch
297 +Lauras Bondage Shop 3.43 - Voice
298 +SL Dirty Deeds Missives 1.4.2
299 +MissivesNotesAnnouncements11
300 +SL Dirty Deeds - Voice Pack V1.3.0
301 +Maelstrom - Fully Voiced Follower and Quest Mod SSE
302 +Notice Me Senpai.1.6.4
303 +Notice Me Senpai - Source 1.6.4
305 +SMUTbooks_SE_v0.1d
306 +Sorlis Balarns Treasure SEv1.06
307 +Sorlis Balarns Treasure - BS Bruma patch SE v1.0
308 +The Book Of Sex SE v1.1
309 +TBOS - Voice Pack V1.2
310 +The Facility 0.74 [SE]
311 +The Facility SE Delta Patch 0.74-0.75
312 +The Facility - CBBE 3BA bodyslide files
313 +The Forbidden Tome 0.5.3
314 +The Forbidden Tome - Voice 0.3.0
315 +The Trappings of Fate v2.0.2 (BETA)
316 +The Trappings of Fate v2.0.0 Voice Pack (BETA)
317 -Things In The Dark SE
318 +Troubles of Heroine SAE 2.8.2
319 +Troubles of Heroine SAE 2.8.2 Merged
322 +Public Whore v1.2.4 SE
323 +Public Whore 1.2.4 - Voice
324 +Public Whore - Patch v1.0 for PW v1.2.4
325 +Public Whore - G9 hotfix F0.3
326 +Public Whore - KS Hair for Public Whore
327 +Public Whore - Comments v1.7
328 +Public Whore - Comments 1.1.0 - Voice
334 +AnimalResearch v0.22 SE
335 +AnimalResearch_v0.22_Voices
336 -9.2.3 LL ESTRUS_separator
337 +Estrus For Skyrim SE-AE-VR
338 +Estrus-Retexture
339 +Estrus-texture-table
340 +Estrus-texture-tenta
341 +Estrus Chaurus V4.390 SE
342 +Estrus-Chaurus-Spider-Addon v4.342-5
343 +Estrus-Chaurus-Dwemer-Addon v4.342-3
344 +ED DDI Patch
345 +ES DDI Patch
346 +EstrusBreederOVIEffectV2.1
347 +3BA Improved Ovipositon Resources
348 +EstrusForSkyrimSE Sound Fix-Normal Woman.7z
349 -9.2.4 LL TRIGGERS, RELIGION, & WIDGETS_separator
350 +sl_triggers12
351 +SL Triggers cum effects
352 +Wintersun - SexLab Integration SE v1.3.3
353 +Wintersun - SexLab Integration SE - Moar Clavicus Pacts v1_0_0
354 +SexLab_Shrines 1.6
355 +SexLab Shrines - Wintersun Patch v2
356 +SexLab_Shrines (sexlab aroused addon)
357 +SLWidgets 2.0.15 (SE)
358 +SLW_Custom_Pack_Alternative_FHU_total
359 +SLW_Custom_Pack_SLA_Arousal by Caiena
360 -9.3 LL BODY, EYES, MAKEUP, & HAIR_separator
361 +Male Meshes for the HIMBO SOS
362 +HIMBO_V5_-_Physics_Setup
363 +HIMBUTT
364 +Amplified Anal Weights
365 +CalienteOVIBodyV3.1
366 +CalienteOVIhiddenBody
367 +CBPC Anus Support
368 +dw's CBBE 3BA With UBE Anus
369 +dw's CBBE 3BA w UBE Anus amplified 150%
370 +Racial Skin Variance - SPID
371 +RSV patch update
372 +BnP male skin (Replacer+Player version)
373 +BnP male RSV (SOS full)
374 +BnP female skin (Replacer+Player version)
375 +BnP female skin (Replacer+Player version) - Extra Options
376 +BnP female skin (RSV patch)
377 +BnP female small update
378 +BnP RSV sk fix
379 +BnP - Female Skin - Wetfunction patch
380 +Assorted Futanari Texture Patches - BnP ERF
381 +Assorted Futanari Texture Patches - BnP TRX
382 +Assorted Futanari Texture Patches - BnP TRX Canine
383 +Assorted Futanari Texture Patches - BnP TRX Horse
384 +Eye Normal Map Fix SSE
385 +HDT-SMP Racemenu Hairs and Wigs
386 +3BA Collision Bodyslides for XING Hairdos - HDT-SMP Racemenu Hair or Wigs
387 +Heels Sound 1.6 SSE-AE
388 +yps-ImmersiveFashion (6.8.0)
389 +yps-SoundTexturePackage 240223 SE
390 +YPS - Devious Chastity Piercing SE v6
391 +YPS Craftable Makeup 1.2
392 +YPS makeup and STA maskara imrpoved - zatto770 V21
393 +yps pubic hair 1.0.2
394 +YPS SCO makeup
395 +Shas' Equipable Hand Nails - Version YPS
396 +Kaw's Claws Polished Nails
397 +Kaw Claws Bodyslide CBBE SE
398 +Nordic Warmaiden Body Hair
399 +yps thought sounds
400 +Immersive Hair Growth and Styling SSE Voice v6.7.4
401 +Race Compatibility with fixes for SSE
402 +Race Compatibility - SacroSanct Plus MolagsWil Patch
403 -9.3.1 LL NPC RESOURCES_separator
404 +ColdSun's Pantheon - Assets - 3BA-CBBE
405 -ColdSun's Pantheon - Assets - 3BA-CBBE - No Pubic Hair Patch
406 +ColdSun's Visions - Assets - 3BA-CBBE-TBD
407 +ColdSun's Visions - Bodyslide Presets - 3BA
408 +ColdSun's Visions - Alternate Vampire Eye Color
409 -9.3.2 LL NPC's_separator
410 +Immersive Wenches - Beast wenches replacement
411 +Immersive Wenches - Enslaved Wenches patch
412 +Immersive Wenches - Settings Loader
413 +Immersive wenches - Sexlab patch
414 +Deadly Wenches - Faction Addon
415 +Deadly Wenches - Settings Loader
416 +Deadly Wenches SE
417 +Forgotten Wenches (Custom Armors)
418 +Forgotten Wenches - Settings Loader
419 +Hateful Wenches - Settings Loader
420 +Hateful Wenches SE (custom armors)
421 +Judgment Wenches (Custom Armors)
422 +Judgment Wenches - Settings Loader
424 +Buxom Wench Yuriana SE 1.5.6BETA (20231223)
425 +Buxom Wench Yuriana - COTN Dawnstar
426 +Buxom Wench Yuriana - COTN Falkreath
427 +Buxom Wench Yuriana - COTN Morthal
428 +Buxom Wench Yuriana - Great Town of Shor's Stone
429 +Buxom Wench Yuriana - JK's Bee and Barb patch
430 +Buxom Wench Yuriana - JK's Ragged Flagon
431 +Buxom Wench Yuriana - JK's Sleeping Giant Inn
432 +Buxom Wench Yuriana - JK's The Bannered Mare patch
433 +Buxom Wench Yuriana - JK's The Drunken Huntsman patch
434 +Buxom Wench Yuriana - JK's Winking Skeever
435 +Buxom Wench Yuriana - The Great Town of Ivarstead Patch
436 +Buxom Wench Yuriana - The Great Town of Karthwasten Patch
437 +Buxom Wench Yuriana - The Great Village of Kynesgrove Patch
438 +Hydra Slavegirls SSE v1.0
439 +Hydra Slavegirls facegen
440 +Hydra Slave Girls KShairs With High Poly Heads
441 +Hydra Slavegirls SE 1.0 - Voice
442 +Populated Military Camps
443 +Serana Dialogue Add-On SE
444 +SDA Patch Hub SE
445 +Trueblood Serana V2
447 +Skyrim Teens
448 +CRF-Teens
449 -9.3.3 LL FOLLOWERS_separator
450 +Recorder - Standalone Fully Voiced Follower - MCM
451 +Recorder - Bugfix Patch SSE
452 +Recorder Follower BSA Ver. 3.0
453 +The Erotic Adventures of Misty Skye 7.2 SSE
454 +Misty Skye CBBE 3BA Patch
455 +Misty Skye - Sexlab Addon
456 +Misty Skye Ai Voice
457 +Mae Little-Fire SSE - Nord Follower
458 +Delara_v1.0_default SSE
459 +Elana and her Fiendish Friends
460 +Nether's Elana - Intimacy
461 +Nether's Eola
462 +Nether's Karliah
463 +Nether's Vex
464 +Nether's Fantabulous Frea
465 +Nether's Jen and Kat
466 +Katana - Journey in the Shadows
467 +Aikoa 3ba High Poly Standalone Berserker Follower - Nude Option
468 +Aiko no vagina patch
469 +Aiko Blush patch
470 +Futa Crusader
471 +Tera Succubus - CBBE SE
472 +Elisif High Poly Replacer
473 +3BBB Vampire Nila ESPFE
474 +Demon Misalo
475 +Demon Misalo no vagina patch(requires main file)
476 +Demon Misalo summon spell
477 +DemonatrixSEv1.2CBBE(3BA)
478 +Demonic Trio (1.02)
479 +Demonic Trio - Hysteria no vagina patch
480 +Demonic Trio - Mia no vagina patch
481 +Demonic Trio - Reya no vagina patch
482 +Nerida the Poison Ivy - Rogue Follower
483 +Nerida the Poison Ivy - 4k Textures
484 +ColdSun's Pantheon - Katana - 3BA
485 +ColdSun's Pantheon - Megara - 3BA
486 +ColdSun's Pantheon - Astara Cosma - Imperial Librarian - 3BA
487 -ColdSun's Pantheon - Legends - Recorder Replacer - 3BA
488 +ColdSun's Visions - Recorder - Replacer or Follower
489 +ColdSun's Visions - NPCs - Cured Serana Patch
490 +ColdSun's Visions - NPCs - NWS Eola Patch
491 +ColdSun's Visions - NPCs - NWS Frea Patch
492 +ColdSun's Visions - NPCs - NWS Karliah Patch
493 +ColdSun's Visions - NPCs - NWS Vex Patch
494 +ColdSun's Visions - NPCs AIO
495 +ColdSun's Visions - NPCs AIO - Update
496 +ColdSun's Visions - NPCs to Followers Addon
497 +ColdSun's Visions - Vixi Talax - Custom-Voiced Altmer Spell Sword
498 +ColdSun's Visions - Coralyn The Bosmer Shaman
499 +ColdSun's Visions - Heavy Metal's Taarna - Face Diffuse - Texture - Update
500 +ColdSun's Visions - Heavy Metal's Taarna - Follower and Outfit - 3BA
501 +ColdSun's Visions - Heavy Metal's Taarna - Taarna's Gear - 3BA
502 +ColdSun's Visions - Nether's Elana
503 -9.3.4 LL RACEMENU & BODYSLIDE PRESETS_separator
504 +HIMBO - DM Spartan Bodyslide Preset
505 +DAEDALS BODY PRESETS COMPLETE EDITION v2
507 +Luna the Goth Sorcerer High Poly Preset
508 +My Valerica 3BA Bodyslide Preset
512 +The Nordic Bombshell Original
514 +3BA - DM Amazons Bodyslide Preset
515 -9.3.5 LL SLAVETATS, OVERLAYS, & TATTOOS_separator
516 +SlaveTatsSE-1.3.9
517 +SlaveTats AIO
518 +Rape Tattoos Continued 2.0.3
519 +Remove Your Tats SE
520 +Fade Tattoos Continued 2.1.0
521 +ZAO Active Overlays 0.3 SE
522 +Stockings_ST_CBBE_
523 +Slavetats Stitches
524 +slavetats_spanked_1.0
525 +Distributed Bodypaints Main File CBBE 4k
526 +Buxom1
527 +Buxom2
528 +Buxom3
529 +Buxom4
530 +Buxom5
531 +cities
532 +Cities33
533 +mgTats
534 +Marts Orc Slavetats Pack
535 +Tramp Stamps Rough 1.1
536 +Private Wearing Tattoo Pack
537 +Public Whore - 4096p SlaveTats
538 +Sexy Supplemental Slavetats 1.15 SE
539 +BM Licenses Tattoo Replacer
540 +Heretical SlaveTatsPack v1.0
541 +Heretical SlaveTatsPack CBBE Patch-Overwrite the original heretical tat pack
542 +Alpia Makeup
543 +Alpia Public Whore Tattoo Replacer
544 +Alpia PW tattoo replacer standalone
545 +Alpia RM Plugins
546 +Alpia Slavetats Orc
547 +Alpia Slavetats Pack
548 +Alpia Slavetats Riek
549 +Alpia's Tattoo Dump
550 +Zaki Tattoos Beast Pack SE
551 +Zaki Tattoos Blacked Pack SE
552 +Zaki Tattoos General Pack SE
553 -9.4 LL MISC SEX MODS_separator
557 +DancingPenis V3.2
563 -9.4.1 LL STATUES_separator
564 +PaarthurnaxCumFountainSE
565 +New Dibella Statues 1.0
566 +1k mara
567 +1k Statue of Meridia Dirty
568 +1k_ver1 dirt_low
569 +Devious Statues SSE
570 +Cock Ride Heroes
571 +Talos BJ statue Whiterun SE v.1.01
572 +Talos BJ statue Whiterun darker stone texture
573 +Whiterun Horse Statue
574 +WRHorse Statue - Erect
575 +TRX - DarkPassion-Futa-
576 +TRX - ElvenHuntress V2femaleHP
578 +TRX - ElvenHuntress11-Futa-
579 +TRX - EnchantmentBenchBeta-Futa-
580 +TRX - Futanari Sonja addon mesh
582 +TRX - Statue CumGirl_1_0-Futa-
584 +TRX - Statue WildPassion14-Futa-
586 +TRX - TriumphOfTheBeast1_1-Futa-
587 +TRX - Trixie BadGirl-Futa-
588 +TRX - Trixie IdealBalancefemale
589 +TRX - Trixie Joke-Futa-
590 +TRX - Trixie with tankard statue-Futa-
591 +TRX Champion of Cyrodiil-Futa-
593 +TRX Statue Summoning-Futa-
595 +TRX - Trixie WitchFlight-Futa-
598 +TRX-DibellaFR2Futa_Demo
599 +TRX-ElvenHuntressV2-Futa-
601 +TRX-SanguineFemaleJK
602 +TRX-SanguineFinal-Futa-Demo
604 +TRX-Vaermina-Futa-Demo
605 +TRX_AncientQueen10-Futa-
608 +TRX_ArcherMasteryExt-Futa-
609 +TRX_CandyGirl1_1-Futa-
610 +TRX_Champion_Demo-Futa-
611 +TRX_MagicMeditation-Futa-
612 +TRX_Malakath_Statue-Futa-
615 +TRX_MilkStation_14-Futa-
616 +TRX_Statue_MagicLessons10-Futa-
618 +TRX_Statue_TrophyFuta
620 +TRX_Statue_Waitress_1_1-Futa-
621 +TRX_StatueHorseRider-Futa-
622 +TRXDiverseSanguineStatues-Futa-
623 +TRXNightcallerTemple
624 -9.4.2 LL MISC MODELS_separator
629 -9.4.3 LL TEXTURES_separator
630 +Snazzy 212 porntextures
631 +Aiko's NSFW Kitchen
632 +BluePalaceTerrace - Textures
633 +CalmPaintings
634 +Elysium Estate Paintings by Nuverotic
635 +Kanjs - Spell Tomes Animated
636 +Porny AlduinWall
637 +Porny AstralSigns
638 +Porny Banners
639 +Porny Book Covers 0.9
640 +Porny Calcelmo Stone
641 +Porny Coin
642 +Porny DB door + tenets + banner
643 +Porny DB MysteriousNote
644 +Porny DB Window (new)
645 +Porny Dragonstone
646 +Porny Dunmer Shrines
647 +Porny Kynareth Mosaic
648 +Porny Mead bottle logos
649 +Porny Nordic Murals
650 +Porny Shields
651 +Porny Shields - ALT A falkreathsymbol
652 +Porny Shields - ALT B falkreathsymbol
653 +Porny Shields - ALT riftensymbol
654 +Porny Shields - ALT solitudesymbol
655 +Porny Signs - redone v1.0
656 +Porny Skill Tree
657 +Porny Spell Tomes Animated 2k (kanjs replacer)
658 +Porny WallofKings
659 +AnimatedShips Porny Sails
660 -9.5 LL ARMOR & CLOTHING_separator
661 +[BAKU]DOAXVV Bitter Jealousy 3BA
662 +[BAKU]DOAXVV Cinderella Heart 3BA
663 +[BAKU]DOAXVV Osmanthus Wine 3BA
664 +[BAKU]DOAXVV Reincarnation Rasha 3BA
665 +[BAKU]DOAXVV Reincarnation Setsuna 3BA
666 +[BAKU]DOAXVV Reincarnation Shadow 3BA
667 +[BAKU]DOAXVV Reincarnation Wisdom 3BA
668 +[IDY] Slave Collar with Anal hook
669 +[Kirax] BDOR 2024 Female Collection
670 +[Kirax] BDOR Elderwood
671 +[NINI] Asylum
673 +BDs Armor and Clothes Replacer CBBE 3BA
674 +BD's Armor and clothes replacer CBBE 3BA - V1.42 Update file
675 +BD's_CBBE_3BBB_Parted_0.5
676 +BDOR Caroxya by Team TAL
677 +BDOR Danharum by Team TAL
678 +BDOR La Orzeca by Team TAL
679 +C5Kev's A Formal Affair Outfit
680 +C5Kev's Chainmaille Ranger Armor 3BA
681 +C5Kev's Delicious Daedric Armor 3BA
682 +C5Kev's Sexy Assassin Outfit 3BA
683 +C5Kev's Sexy Rose Armor 3BA
684 +C5Kev's Stalhrim Stiffy Armor 3BA
685 +C5Kev's Stalhrim Stiffy Tex Update 1
686 +DDWardrobe - Ritual Wrappings (3BA) - Provided by ilievildqziai
687 +DM BDOR Aquila by Team TAL
688 +DM BDOR Dobart by Team TAL
689 +DM BDOR Nova Taritas by Team TAL
690 +Kardia Armor SSE 2
691 +Kardia of Rhodes Armor 3BA
692 +Kardia SSE Textures - Resource
693 +Kasumi Armor V.1 3BA
694 +Nun knight armor 3BA V2
696 +PeroPeroArmorPack SE
697 +Ritual_Wrappings_-_CBBE_SE
698 +RLABBBlovers
699 +RLASILVERLovers
700 +RLA Skimpy Cuirass lovers
701 +RLA fix 1.1
702 +Overhit Jannedaarc by Team TAL
703 +Overhit Syana by Team TAL
704 +Haru Bondage
705 +Arsenic_Haru_Bondage_-_CBBE_SE
706 +DwarvenDeviousCuirass (3BA) 2.0.1
707 +DwarvenDeviousCuirass (3BA) 2.0.0 - DD
708 +Egypt Sibyl 3BA
709 +Dark Wing's Heels SE replacer
710 +[COCO] Caress of Venus - CBBE
711 +[COCO] Caress of Venus - Wenches and Skirt Slot Patch - Named Wenches Only SPID
712 +[COCO] Caress of Venus - Wenches and Skirt Slot Patch - SPID
713 +Topless Forsworn - Show Amulets and Necklaces
714 +Topless Forsworn Armor CBBE BodySlide - Replacer
715 -9.5.1 LL PIERCINGS & JEWELRY_separator
716 +SMP Hoop Earrings
717 +CBBE HDT Piercing Sets v1.0
718 +CBBE HDT Piercing Sets - Conversion to SSE 3BBB
719 +ID Skimpy Pierces
720 +Piercings of the Divines - CBBE 3BA
721 +Piercings of the Divines - Devious
722 +Piercings of the Divines - Devious Replacer
723 +Ayleid Piercings - CBBE 3BA - SoS
724 +Ayleid Piercings - TRX Futa
725 +Detailed NPCs - Ayleid Piercings for NPCs (SPID)
726 +Sharkish Piercings - 3BA - Base
727 +Sharkish Piercings 3BA - DD Patch
728 -9.5.2 LL BIKINI_separator
729 +Opulent Robe Retexture 2K SE
730 +Bikini Robes (3BA)
731 +Bikini Robes-OutfitReplacerCompatibility
732 +TAWOBA REMASTERED CBBE SE
733 +TAWOBA-TEWOBA - CCOR
734 +TAWOBA-TEWOBA - CCOR 1.01
735 +TAWOBA - Devious Masks
736 +Sunjeong TAWOBA Remastered forDD Part1
737 +Sunjeong TAWOBA Remastered for DD Part 2
738 +T.E.W.O.B.A. - The Expanded World of Bikini Armors By PUMPKIN
739 +TEWOBA (Pumpkin) - for DD
740 +TAWOBA-TEWOBA WACCF Rebalance + Devious Devices 1.2
741 +WACCF ACE Bikini Armor For Female NPCs
742 +RaceMenu High Heel Sexlab Patch
743 +Better Heels Sounds FX 1.0.6
744 -9.6 LL ANIMATIONS - SLAL_separator
745 +SLAL_SE
750 +SLAL - Anubs Animation Pack 02.2023
751 +SLAL - BakaFactory's SLAL Pack
752 +SLAL - Billyy's SLAL Animations 8.0
754 +SLAL - Cobalt Animation Spanking Pack SE v1.4.3
759 +SLAL - Funny Biz - MySLalPack v12.0
760 +SLAL - Furniture Marker Sex v0.16 SE
761 +SLAL - Furniture Sex SLAL Packs
772 +SLAL - ProxyAnims SE v2.2
773 +SLAL - Riding Styles2V5.1se
774 +SLAL - Rydin Animations SLAL Pack Complete SSE v0.5a
777 +SLAL - SMPToys
779 +SLAP Redux v2.7 VoicePack
781 -9.6.1 LL ANIMATIONS - DAR_separator
782 +DAR FM Labor v1
783 +Aroused Sexy Idles DAR
784 +TDF Aroused Idles DAR
785 +SLAC DAR Invite My Choice SE
786 +Ria DAR v1.2.15 SE
792 +DAR - Pretty Sit Idles + Random Female Sitting
793 +DAR Trauma Conditions v3
794 +Sexy Sit Animations (conversion)
795 +Sexy Combat Animations (conversion and DAR version) - For female NPCs
796 +Sexy Combat Animations (conversion and DAR version) - For unique females
797 +Sexy Combat Animations (conversion and DAR version) - For your playable female character
798 +DAR Random Sexy Female DualMagic All Females
799 +DAR Random Sexy Female RightHanded Melee Left handed Magic Idle Animation
800 +DAR Random Sexy Female Dual1handed melee Idle Animations
801 +Bow Animations - Sexy Idle Pose
802 -9.6.2 ANIMATIONS - OAR_separator
803 +Devious Devices - OAR Patch for MCO
805 +OAR - Baka Motion Data Pack
806 +OAR - Labor Animations (Open Animation Replacer)
807 +OAR - Live Action
808 +OAR - Subtle Nutting Animation
809 +OAR - Subtle Nutting Animation for Cumshot
810 +Feminine Walk and Run - Open Animation Replacer
811 +Sexy Idle Animations - OAR - DAR - FOMod
812 +Sexy Random Idles OAR Version
813 +Aroused Sexy Idles - OAR
814 +Aroused Sexy Idle When Carry a Weapon
815 +Subtle Feminine Stagger Animation SE by Xtudo -OAR
816 +Sprint Animation LE by Xtudo - Replacer - OAR
817 +Subtle Feminine Mount Sprint SE by Xtudo - OAR
818 +Subtle Feminine Carriage Sitting SE by Xtudo - OAR
819 +Dynamic Animation Replacer (OAR) - Crawl on all Fours Animation - Original Variant
820 -9.7 LOVERSLAB VOICE MODS_separator
821 +Buxom Wench Yuriana - Voice Pack
822 +BaboDialogue v5.0 - VoicePack
825 +Cutting Room Floor - Voice 3.1.9 SE
827 +Estrus Breeding Voiced
828 +Fill Her Up Baka edition v1.96 - Voice Replacer
829 +Forgotten City-1179-1-8 - Voice
832 +ZaZ Animation Pack+ CBBE HDT V.8.0+SEREV3 - Voice
834 +Interactive BDSM v0.3SE - Voice
835 +Body Search - elevenlabs voice
836 -9.7.1 DBVO VOICE MODS_separator
837 +Dragonborn Voice Over
838 +DBVO - DarkDesiresCircleOfLust
839 +DBVO - Devious Deviices 5.2.7
840 +DBVO - Devious Followers Redux 0.1.9
841 +DBVO - DeviousInterest - DBVO - Bella(Sarah)
846 +DBVO - ElevenLabs Bella - Cutting Room Floor
847 +DBVO - ElevenLabs Bella - Immersive Hair Growth and Styling SSE (6.7.2)
848 +DBVO - ElevenLabs Bella - Jen and Kat
849 +DBVO - ElevenLabs Bella - Katana Follower
850 +DBVO - ElevenLabs Bella - Misty Skye
851 +DBVO - ElevenLabs Bella - NWS Elana
852 +DBVO - ElevenLabs Bella - Serana Dialog Addon
853 -DBVO - ElevenLabs Bella - SL Baka Defeat
854 -DBVO - ElevenLabs Bella - SL Confabulation
855 -DBVO - Follower Slavery Mod (FSM) 1.510
856 +DBVO - Interactive BDSM v0.5.7z
857 +DBVO - Laura's Bondage Shop - DBVO - Bella(Sarah)
858 +DBVO - MM Valerica Lust of a Mother 1.24
859 +DBVO - Remove Your Tats
863 +DBVO - The Trappings of Fate v2.0.0 (BETA)
864 +DBVO - Voice Bella - Animal Mansion Plus v1.1
865 +DBVO - Voice Bella - Balazar's Bitch v0923b
867 +DBVO - Voice Bella - DD Helpers
868 +DBVO - Voice Bella - Devious Interests v0924
869 +DBVO - Voice Bella - Dirty Deeds Missives v1.4.1
870 +DBVO - Voice Bella - Hydra Slavegirls v827
871 +DBVO - Voice Bella - Laura's bondage shop v3.42
872 +DBVO - Voice Bella - Simple Slavery v6.3.18
873 +DBVO - Voice Bella - SL Drunk Redux v1.3
874 +DBVO - YurianaWench 1.5.4
875 +DBVO - ZaZAnimationPack 8.0
876 +DBVO Bella - Astara Cosma
877 +DBVO Bella - Belethor's Sister
878 +DBVO Bella - CC Content
879 +DBVO Bella - Darkend
880 +DBVO Bella - Hel Rising
881 +DBVO Bella - Maelstrom
882 +DBVO Bella -Immersive Hair Growth and Styling SSE (6.5.4)
885 +Bella Voice DBVO
886 +Bella Voice DBVO - Radiant quest fix
887 +Spank That Ass Bella Voice
888 -9.8 LOVERSLAB PATCHES_separator
913 -10.2 NON-NOLVUS LATE LOADERS & PATCHES_separator
914 +Auto Unequip Ammo
915 +OBody Next Generation
916 +OBody Next Generation - Settings Loader
918 +OBody Next Generation ORefit JSON Master List
920 +DBVO - NORDIC UI PATCH - 32x9
921 +Improved Loading Screen Colors
922 +Jaxonz MCM Kicker SE
923 +Let Your Hair Down
924 +Let Your Hair Down - Quick Feminine Animations
925 +Menu Maid 2 - MCM manager
926 +Nordic UI 32 by 9 and 21 by 9 aspect ratio patch
927 +NORDIC UI - Miscellaneous Patches
928 +NORDIC UI - Ultrawide Fixes and Patches (329)
933 +Disable Vanilla Loading Screens
936 +SurverX floppy SMP V1.4
937 +Selective SOS Physics Manager_v2.0.2
939 +Immersive Wenches Bikini Armor For Female NPCs
941 +SPID Bikini Armors for Female NPCs - TAWOBA Remastered 6.1
942 +SPID Bikini Armors for Female NPCs - TEWOBA 1.03
943 +Skyrim - Utility Mod AE
944 +CrosshairRefEventsFix_v0.0.1
945 +Naked Dungeons
946 +Naked Defeat 4-80 - FULL - (SE)
947 +Naked Defeat 4-81 - Patch - (SE)
948 +Naked Defeat 4-95-3 - Patch - (LE+SE)
949 +Naked Defeat - EXTRA - DDe (all versions) Outfits (LE+SE)
950 +Naked Defeat - EXTRA - ForcedForeplay - 0-3 - (SE)
951 +Naked Defeat - EXTRA - GoldenShowers - 1-0 (SE)
952 +Naked Defeat - EXTRA - RapeHands - 4K - (SE)
953 +Naked Defeat - EXTRA - Whipmarks 4K (SE)
954 +Subtitles
955 +World Encounter Hostility Fix
956 +Configurable Notification Messages
957 +AI Follower Framework (AI-FF)
958 +AIAgent Spells
959 +Herika Standalone Follower
960 +SSE Creation Kit Fonixdata Lip Sync Fix
962

+MinAI

 

 

 

 

Posted

Is there a way to make MinAI make followers use dirty talk during sex scenes without needing me to initiate it? Or is it just an inherent limitation of LLMs that they won't speak unless spoken to first?

Posted
15 minutes ago, kraoro said:

Is there a way to make MinAI make followers use dirty talk during sex scenes without needing me to initiate it? Or is it just an inherent limitation of LLMs that they won't speak unless spoken to first?

 

They will dirty talk during sex scenes (in AI-FF). It's triggered by stage changes, and collisions. Not supported for Mantella.

Posted

Ah, OK. I installed AIFF and followed all the instructions to get AIFF to communicate with the mantella XTTS API server, but NPCs aren't having their voices synth'd. Besides editing the config to force voice type, are there any other things I need to mess with in AIFF to have the voice gen?7

Posted

What are the dpendencies for SpankAss and SpankTits?

In log I see: [minai (Info)]: Found Spank That Ass

MinAI MCM says Missing Mod Dependency

Posted
2 hours ago, Min said:

 

They will dirty talk during sex scenes (in AI-FF). It's triggered by stage changes, and collisions. Not supported for Mantella.

Any way to stop the per stage commentary? Once an encounter would cut down on the requests to openrouter. Actually, is there a way to make it more or less totally passive? Responding to when I say something, rather than periodically sending prompts.

Posted (edited)
14 hours ago, kraoro said:

I assume you're on Windows. Click on My PC, then on the left hand side, scroll all the way down, down past your drives. You should see an option that just says Linux with the penguin icon. Click on that, then follow the folder path starting with Dwemer.

Yes on Windows! So it work indeed ! Thanks for your answer,

I'm not exactly a tech wiz, thanks for your patience

Edited by triss666
Posted
5 hours ago, Racihti said:

Any way to stop the per stage commentary? Once an encounter would cut down on the requests to openrouter. Actually, is there a way to make it more or less totally passive? Responding to when I say something, rather than periodically sending prompts.

 

The frequency at which minai requests the LLM to respond can be configured in the MCM.

Posted
6 hours ago, Dowser said:

What are the dpendencies for SpankAss and SpankTits?

In log I see: [minai (Info)]: Found Spank That Ass

MinAI MCM says Missing Mod Dependency

It also requires Devious Followers at the moment, as I'm using that library to invoke the spanking. Something on my list of things to fix at some point.

Posted
16 hours ago, TheTiCoune said:

The problem I'm facing is not MinAI but with AIFF.

 

Keep getting can't reach server, server busy... and wait few seconds then start working back.

I disabled Narrator, thinking it might be that. 

I tried setting up the wsl session and assigned with cpu affinity with py and then compiling in an exe.
 

import os
import time
import psutil
import sys
 
def main():
       os.system('wsl -d DwemerAI4Skyrim3 -- /etc/start_env')
   
     time.sleep(2)
   
    wsl_process = None
    for process in psutil.process_iter(['pid', 'name']):
        if 'wsl' in process.info['name'].lower():
            wsl_process = process
            break
   
    if not wsl_process:
        print("Erreur : Processus WSL non trouvé.")
        sys.exit(1)
   
    try:
        p = psutil.Process(wsl_process.pid)
       
        # Ajuster l'affinité CPU pour utiliser uniquement les cœurs 4, 5, 6 et 7
        p.cpu_affinity([4, 5, 6, 7])
        print(f"Affinité CPU définie pour WSL (PID {p.pid}) sur les cœurs 4, 5, 6 et 7.")
       
        # Définir la priorité du processus à élevée
        p.nice(psutil.HIGH_PRIORITY_CLASS)
        print(f"Priorité du processus WSL (PID {p.pid}) définie à Élevée.")
       
    except psutil.AccessDenied:
        print("Erreur : Accès refusé. Essayez d'exécuter le script en tant qu'administrateur.")
    except Exception as e:
        print(f"Une erreur s'est produite : {e}")
 
if __name__ == "__main__":
    main()
 
But I still have issue with NPC getting stuck with can reach server, server busy ...

I didn't get any issues with Mantella.

But what a blast with AIFF, it's day and night, so much fun. If I can get rid of the wsl not responding issue will be nice.

And 4 days without updates ! Damn it, we need more ! 🙂

Thanks a lot for amazing works, it make my playtime so much unpredictable !
 

Same problem here.... maybe firewall or VPN? 

let me know if you find a solution. Tks

Posted
3 minutes ago, triss666 said:

Same problem here.... maybe firewall or VPN? 

let me know if you find a solution. Tks

As I mentioned to the other person, it's probably just a matter of your system being too busy. Check the AI Log (Both in the web UI, and the aiagent.log file) to see what's taking too long. For these types of questions, I'd suggest the AI-FF discord server - the folks over there are rather helpful, and can probably help you figure out your AI-FF related problems.

Posted (edited)

Beta30 working beautifully, other than  SL animations not firing up after an SLHH molest event. Not sure what's up with that, as it was working on the previous version. Everything else is good, though, and I have to say, AI-FF and MinAI have to be the most remarkable gaming experience I've had. 

Edited by Loopdeloop
Posted

Have not yet been able to find the right settings for group conversations. Does anyone know what settings are best so that there is more banter between followers?

Posted
43 minutes ago, Azailahab said:

Have not yet been able to find the right settings for group conversations. Does anyone know what settings are best so that there is more banter between followers?

These are AI-FF settings: Under the advanced settings, the two variables that control this are RECHAT_H (Maximum number of rechats that will chain) and RECHAT_P (Probability of rechats triggering).

Posted (edited)
31 minutes ago, Min said:

These are AI-FF settings: Under the advanced settings, the two variables that control this are RECHAT_H (Maximum number of rechats that will chain) and RECHAT_P (Probability of rechats triggering).

 

I found those setting earlier and set it to RECHAT_H at 4 and RECHAT_P at 0 (Integer: Rechat probability. 0 = Always | 50 = Sometimes | 100 = Never) for both of my follower configurations. Still no banter, is the RECHAT_P setting correct ay 0 for always or is it a hard percentage and should be higher?

 

Thanks for the response, even though i know this is about MinAI and not so much about AI-FF, I just really want to hear the interaction between those two followers considering Yuriana is technically my slave and my character Bella is submissive to Recorder my devious follower. their Diary entries show they both see my relationship with the other follower differently and i am sure they would generate some interesting side conversations.

 

Edited by Azailahab
Posted
1 minute ago, Azailahab said:

 

I found those setting earlier and set it to RECHAT_H at 4 and RECHAT_P at 0 (Integer: Rechat probability. 0 = Always | 50 = Sometimes | 100 = Never) for both of my follower configurations. Still no banter, is the RECHAT_P setting correct ay 0 for always or is it a hard percentage and should be higher?

I'd suggest following up on the AI-FF discord for help with that one. :)

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   1 member

×
×
  • Create New...