Midnightbug Posted January 30, 2022 Posted January 30, 2022 1 minute ago, HexBolt8 said: Just ruling out an obvious problem, do you have "Use separate orgasms" enabled in SexLab? Yes, SLSO is working perfectly, multiple orgasms, all mods what I use with SLSO working fine and registering multiple orgasms.
Hex Bolt Posted January 30, 2022 Author Posted January 30, 2022 Just now, Midnightbug said: Yes, SLSO is working perfectly, multiple orgasms, all mods what I use with SLSO working fine and registering multiple orgasms. Okay, it was worth checking, since it is a setting in a different mod's MCM and it wouldn't be surprising if some players overlook it. At this point I'm at a loss. SLSO's "For Modders" section documents the GetOrgasmCount function that this mod uses to obtain SLSO's orgasm count per actor. I see the orgasm count being incremented in the SLSO version of the sslActorAlias script. SLSO's function should be returning the orgasm count. This mod just uses that function to total the number of orgasms for all male partners in a sex scene. Is anyone else who uses SLSO having the problem that love sickness is never triggered?
Midnightbug Posted January 30, 2022 Posted January 30, 2022 (edited) 8 minutes ago, HexBolt8 said: Okay, it was worth checking, since it is a setting in a different mod's MCM and it wouldn't be surprising if some players overlook it. At this point I'm at a loss. SLSO's "For Modders" section documents the GetOrgasmCount function that this mod uses to obtain SLSO's orgasm count per actor. I see the orgasm count being incremented in the SLSO version of the sslActorAlias script. SLSO's function should be returning the orgasm count. This mod just uses that function to total the number of orgasms for all male partners in a sex scene. Is anyone else who uses SLSO having the problem that love sickness is never triggered? I could be wrong here, but you said mod counts female (character orgasms) to decide how love sickness is being calculated. If your mod using the SLSO function to calculate orgasms for all male partners in the scene maybe this is where the problem lies? SLSO function calculate male orgasms Love sickness calculate female orgasms Edited January 30, 2022 by Midnightbug
Heinzelman Posted January 30, 2022 Posted January 30, 2022 10 minutes ago, HexBolt8 said: Is anyone else who uses SLSO having the problem that love sickness is never triggered? Yes, i also cant get it to work. Only thing working on my end is manually applying the Love Sickness from the MCM. I use an older Version of SL (maybe the beta before the current version) and SLSO though, so my observations might be unhelpful.
Hex Bolt Posted January 30, 2022 Author Posted January 30, 2022 51 minutes ago, Midnightbug said: I could be wrong here, but you said mod counts female (character orgasms) to decide how love sickness is being calculated. That's not it. If the setting is "On player orgasm", the assumption is one orgasm per male partner for the sex scene. This setting works well for players who don't use SLSO. If the setting is "On sex end" and SLSO is installed, at the end of sex the mod uses SLSO orgasm count per male partner (if SLSO is not installed, the assumption is one orgasm per male partner for the sex scene, similar to the "On player orgasm" setting). 42 minutes ago, Heinz01 said: Yes, i also cant get it to work. Apparently, the SLSO integration to get the number of male orgasms isn't working. Bad news, but it's important to know what's happening. I'll have to make an update to remove the use of the SLSO function, and just assume one orgasm per male partner. That's disappointing. But the mod can still be useful to SLSO users who don't worry too much about orgasm count (sex with a male partner happened, insemination probably occurred, so the base chance is applied).
Heinzelman Posted January 30, 2022 Posted January 30, 2022 (edited) 14 minutes ago, HexBolt8 said: That's not it. If the setting is "On player orgasm", the assumption is one orgasm per male partner for the sex scene. This setting works well for players who don't use SLSO. If the setting is "On sex end" and SLSO is installed, at the end of sex the mod uses SLSO orgasm count per male partner (if SLSO is not installed, the assumption is one orgasm per male partner for the sex scene, similar to the "On player orgasm" setting). Apparently, the SLSO integration to get the number of male orgasms isn't working. Bad news, but it's important to know what's happening. I'll have to make an update to remove the use of the SLSO function, and just assume one orgasm per male partner. That's disappointing. But the mod can still be useful to SLSO users who don't worry too much about orgasm count (sex with a male partner happened, insemination probably occurred, so the base chance is applied). Just a suggestion from one who doesnt exactly know what is really happening, so this may be stupid from me . Would it be a possible solution for your mod to listen to the event on which SL applies the cum texture to apply the love sickness? As far as i understand SLSO cum is applied through SL, so it could maybe working for both setups. Edited January 30, 2022 by Heinz01
Midnightbug Posted January 30, 2022 Posted January 30, 2022 (edited) 26 minutes ago, Heinz01 said: Just a suggestion from one who doesnt exactly know what is really happening, so this may be stupid from me . Would it be a possible solution for your mod to listen to the event on which SL applies the cum texture to apply the love sickness? As far as i understand SLSO cum is applied through SL, so it could maybe working for both setups. It would be reaaaally cool the get SLSO working with this, because if you use SLSO, you worry about orgasm count, if you enable always orgasms for this mod that kinda defeats using SLSO at all, because it will affect all mods and SLSO itself, so might as well we can remove/ disable SLSO to use your mod. Until SLSO compatibility resolved I will just wait. I would rather use SLSO with all compatible mods and skip Lovesick (but it is a really amazing idea, I am sad. :S) I am wondering if SLSO author can help you to make Lovesick events work with SLSO? Edited January 30, 2022 by Midnightbug
MikeTM Posted January 30, 2022 Posted January 30, 2022 @HexBolt8 Sorry for my English - Google translator LE + SLSO - never triggered After replacing RegisterForModEvent("PlayerSex_End", "OnPlayerSexEnd") with RegisterForModEvent("PlayerTrack_End", "OnPlayerSexEnd") All OK! RegisterForModEvent("PlayerOrgasmEnd",... - it is not clear where this event comes from. 3
Hex Bolt Posted January 30, 2022 Author Posted January 30, 2022 (edited) 7 hours ago, MikeTM said: All OK! Thank you. I'm not sure why it would make a difference, but I will try this. @Midnightbug, @Heinz01, or anyone else using SLSO, would you care to try a new version with MikeTM's suggested change and report back if it works for you? Edit: Deleted the download. I'll release the fix as version 1.0.1. Edited January 30, 2022 by HexBolt8 2
Heinzelman Posted January 30, 2022 Posted January 30, 2022 33 minutes ago, HexBolt8 said: Thank you. I'm not sure why it would make a difference, but I will try this. @Midnightbug, @Heinz01, or anyone else using SLSO, would you care to try a new version with MikeTM's suggested change and report back if it works for you? Love Sickness 1.0.0 - TEST.7z 43.88 kB · 1 download Yep it now works. Thank you very much for doing this mod.
Hex Bolt Posted January 30, 2022 Author Posted January 30, 2022 20 minutes ago, Heinz01 said: Yep it now works. Amazing. Such a simple change. Thank you for testing this. A HUGE thank you and a gold star to @MikeTM for the fix! ? 1
Hex Bolt Posted January 30, 2022 Author Posted January 30, 2022 Version 1.0.1 Changed: Removed the body glow from the hearts effect. Fixed: SLSO integration wasn't working. Huge thanks to @MikeTM for the fix! 2
bathoz Posted February 2, 2022 Posted February 2, 2022 Oooh. This might be the critical mass to get off my metophorical butt and reinstall Skyrim/go into mod hell again. 1
Anunya Posted February 4, 2022 Posted February 4, 2022 This is the thing you were working on? Nice! Looks interesting - I'll definitely add it to my next playthrough.
LynErso666 Posted March 22, 2022 Posted March 22, 2022 I tried using this for a while and noticed while Love Sick prices of Skooma and mead and stuff is thousands and thousands of gold and I see no way to disable the price or barter change feature altogether. I can set it to 1.00 but nothing really changes the values are still multiplied permanently throughout my game even when the Love Sickness is gone, and I don't understand the "Swallow" feature. Like swallow what? It never says anything during sex scenes and no effects ever pop up whether it's enabled or not.
LynErso666 Posted March 22, 2022 Posted March 22, 2022 3 hours ago, LynErso666 said: I tried using this for a while and noticed while Love Sick prices of Skooma and mead and stuff is thousands and thousands of gold and I see no way to disable the price or barter change feature altogether. I can set it to 1.00 but nothing really changes the values are still multiplied permanently throughout my game even when the Love Sickness is gone, and I don't understand the "Swallow" feature. Like swallow what? It never says anything during sex scenes and no effects ever pop up whether it's enabled or not. Totally iNeed. It was iNeed's food value changes that caused this glitch. I turned it off in the iNeed MCM and Love Sickness barter thingy isn't quite as outrageous, but still I wish I could disable it by taking it to times and divided by one. But it doesn't seem to function. Could be another symptom of the iNeed issue. I'd still love to know more about the swallow feature. I would love to find a swallow feature like Sexlab Survival's without having to use that massive (albeit pretty amazing) mod.
Hex Bolt Posted March 22, 2022 Author Posted March 22, 2022 8 hours ago, LynErso666 said: I don't understand the "Swallow" feature. Like swallow what? Semen during oral sex. If you swallow, it has full effect; if you don't, it's just 10%.
Caralis Posted March 22, 2022 Posted March 22, 2022 5 hours ago, LynErso666 said: I'd still love to know more about the swallow feature. I would love to find a swallow feature like Sexlab Survival's without having to use that massive (albeit pretty amazing) mod. It may be worth linking the two swallow mechanics if you use SL Survival and Love Sickness together. Basically allowing Love Sickness to read SLS' swallow event and use that to decide if the PC swallowed after oral. Though I have no experience in scripting, so I don't know if such a bridge would be possibile.
blahity Posted April 7, 2022 Posted April 7, 2022 Really enjoying the mod! Have you considered adding a periodic chance to force the pc to masturbate while under the effects of love sickness? A thoughts system while love sick similar the one in your Submissive Lola mod would fun too! Maybe with different divisions based how how much resistance you've lost? I was surprised I missed this mod when it came out. I had been been looking for a mod that adds consequences that won't interrupt regular gameplay. So this was just what I was looking for! Thanks Hex!
Hex Bolt Posted April 7, 2022 Author Posted April 7, 2022 1 hour ago, blahity said: A thoughts system while love sick similar the one in your Submissive Lola mod would fun too! Maybe with different divisions based how how much resistance you've lost? I've thought about that, yes. Possibly a future update. 2
LaRem. Posted May 4, 2022 Posted May 4, 2022 On 4/8/2022 at 6:04 AM, HexBolt8 said: I've thought about that, yes. Possibly a future update. Are you planning to add debuffs to shout as well?
Hex Bolt Posted May 4, 2022 Author Posted May 4, 2022 55 minutes ago, LaRem. said: Are you planning to add debuffs to shout as well? That's a possibility, maybe the cooldown. 1
LaRem. Posted May 4, 2022 Posted May 4, 2022 4 hours ago, HexBolt8 said: That's a possibility, maybe the cooldown. Great idea!
LaRem. Posted May 6, 2022 Posted May 6, 2022 On 5/4/2022 at 12:53 PM, HexBolt8 said: That's a possibility, maybe the cooldown. An interesting idea: after violence, the heroine is forced to obey or cunning because debuffs do not allow her to fight with opponents. If the Scream is also blocked, then you will get a complete immersion.
bubba999 Posted May 10, 2022 Posted May 10, 2022 This is very promising! I do have a couple of questions. 1) My prostitute had 10 clients and got euphoria but it only went to 10%. Is there a setting to make it increase faster? 2) Could you add a import and export settings to the MCM? I'm playing around with all the number a lot and that would be helpful. Thanks.
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