Jump to content

[Elin] [Mod] More Lovin' Library Reworked - Adult content framework


Recommended Posts

Posted

Is something wrong on my end, or do the "piston" sounds no longer work in the current version? Climax sound works, but sex is just silent.

 

I tried by removing the old sound directory and using the one in the current version, and i tried using the old sound dir. Same result: Climax sound plays, but sex is silent. I am using my own speech config files, but that shouldn't affect sound?

Posted
On 7/24/2026 at 3:42 AM, Neonredkill said:

Is there a way to make better succubus work alongside this mod? Not being able to sate my hunger via sex as a succubus makes me sad

Both did work together in the past, if you configured things correctly (like BS handle drain/rape and this mod handle consensual sex).

 

However, the current problem is that BS is broken with current Elin version (only the charm ability works, everything else disfunctional). So there's no point asking for compatibility, since BS currently isn't even compatible with Elin itself.

Posted
21 hours ago, bitnuke said:

Is something wrong on my end, or do the "piston" sounds no longer work in the current version? Climax sound works, but sex is just silent.

 

I tried by removing the old sound directory and using the one in the current version, and i tried using the old sound dir. Same result: Climax sound plays, but sex is silent. I am using my own speech config files, but that shouldn't affect sound?

Nevermind. Turns out the speech files do in fact control sound, and the keywords for piston sounds changed from "normal" to "early" and "late". Since there is no fallback to the old syntax, it renders old speech- and soundfiles obsolete.

 

I know people don't RTFM, but it would have been nice if this was mentioned in the changelog. Had to figure it out by exhaustive search because of this.

Posted (edited)

I've experimented a bit with the new drain features, to see if i can emulate behavior somewhat similiar to BetterSuccubus. Result: Impossible with the current code.

 

The reason is that - once again - this mod is too smart and vanilla for its own sake:

 

STA-Drain: The succubus cannot actually gain stamina. It's just a penalty for the victim, because that's how vanilla does it. Better Succubus instead: Transfer STA from victim to succubus. Simple, stupid, predictable and easy to understand.

 

Mana-Drain: The victim cannot go negative, so a succubus cannot manakill a victim. Is this vanilla behavior somewhere? Maybe, dunno. Better succubus instead: Transfer mana from victim to succubus. If he dies, so be it. Simple, stupid, predictable and easy to understand.

 

HP-Drain: Like MAG-drain, a succubus cannot kill victims by HP-drain. Better succubus instead: Transfer HP from victim to succubus. If he dies, so be it. Simple, stupid, predictable, easy to understand.

 

I guess one advantage of the above is, that a succubus cannot accidentally drainkill an NPC - except via STA, because that for some reason is allowed to go negative. But accidental drainkills should no longer be an issue: That's why the no drain on consensual sex option was implemented after all. So what the current mechanics actually achieve is, that you cannot use this mod for "combat sex" - and it is vanilla/lore friendly i guess. 

Edited by bitnuke
Posted
On 8/20/2026 at 4:53 AM, bitnuke said:

Nevermind. Turns out the speech files do in fact control sound, and the keywords for piston sounds changed from "normal" to "early" and "late". Since there is no fallback to the old syntax, it renders old speech- and soundfiles obsolete.

 

I know people don't RTFM, but it would have been nice if this was mentioned in the changelog. Had to figure it out by exhaustive search because of this.

Sorry about that, Next time I'll mention things like that.

Since I had already noticed earlier that the mod needs to be completely reinstalled for it to update correctly, I thought this problem wouldn’t affect anyone. I suppose you had your own MLLR's config set up, which is why you didn’t have the opportunity to reinstall it completely.

Posted
On 8/20/2026 at 12:17 PM, bitnuke said:

I've experimented a bit with the new drain features, to see if i can emulate behavior somewhat similiar to BetterSuccubus. Result: Impossible with the current code.

 

The reason is that - once again - this mod is too smart and vanilla for its own sake:

 

STA-Drain: The succubus cannot actually gain stamina. It's just a penalty for the victim, because that's how vanilla does it. Better Succubus instead: Transfer STA from victim to succubus. Simple, stupid, predictable and easy to understand.

 

Mana-Drain: The victim cannot go negative, so a succubus cannot manakill a victim. Is this vanilla behavior somewhere? Maybe, dunno. Better succubus instead: Transfer mana from victim to succubus. If he dies, so be it. Simple, stupid, predictable and easy to understand.

 

HP-Drain: Like MAG-drain, a succubus cannot kill victims by HP-drain. Better succubus instead: Transfer HP from victim to succubus. If he dies, so be it. Simple, stupid, predictable, easy to understand.

 

I guess one advantage of the above is, that a succubus cannot accidentally drainkill an NPC - except via STA, because that for some reason is allowed to go negative. But accidental drainkills should no longer be an issue: That's why the no drain on consensual sex option was implemented after all. So what the current mechanics actually achieve is, that you cannot use this mod for "combat sex" - and it is vanilla/lore friendly i guess. 


In the latest update I’m working on, there’s now the ability to drain HP/mana and saturation from succubus victims without killing them (except perhaps through stamina).

While I was testing MLLR, I also wanted to add the ability to drain stamina from the victim, but that would create problems with the math and the overall logic of MLLR, because, AFAIK, in Elin, the succubus also gets an additional stamina cost for the drain, which is exactly what’s implemented in MLLR. So, it turns out that the succubus pays more stamina for the drain, and yet immediately gets it back plus extra from victim.

Succubus config:

Spoiler

image.png.b5e690bf2806a51d666445caaacc296d.png


Succubus extra stamina cost:

Spoiler

image.png.5880ed324b76eaf2a62ba48caeea1326.png


The current logic behind draining mechanic you can see here and here.

Posted (edited)
13 hours ago, JustHare said:

In the latest update I’m working on, there’s now the ability to drain HP/mana and saturation from succubus victims without killing them (except perhaps through stamina).

Yep. That's what i was describing. 

 

Quote

The current logic behind draining mechanic you can see here and here.

Yep. Seen the code. It's designed for victim stats to not go below zero (except STA). 

 

My point was: If that's the behavior a player wants, cool! But if a player wants the opposite: Combat-sex by drainkilling opponents, then there is no way configure it like that. 

 

Unrelated potential bugreport: I'm almost certain that drain kicks in on prositution, even if the option for drain on consensual sex is disabled. Yet when i look through the sourcecode, i don't see why this would happen. The code from what i can tell treats prostitution like a consensual encounter, so drain should not happen. Yet ingame it seems like the STA-penalty for drain is applied. Not sure if the error is on my side, or hidden somewhere in the code.

Edited by bitnuke
Posted
2 hours ago, bitnuke said:

Yet ingame it seems like the STA-penalty for drain is applied. Not sure if the error is on my side, or hidden somewhere in the code.

Hm, that is very strange. I'll look into it.

Posted (edited)

New Elin and Better Succubus version out. I have not tried either yet, since it's too early for the mod ecosystem to have fully updated.

 

According to the changelog, the new/current Elin version seems to be mostly content and few under the hood changes. The following Elin version (in 1-2 months) will have major changes including home story expansion, which implies new mechanics. This means in 1-2 weeks from now, the current Elin version will likely become the stable modding platform for months, since the planned next version will break all kinds of shit. 

Edited by bitnuke

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
×
×
  • Create New...