Jump to content

[mod] Carnalitas Love Reimagined


pharaox

Recommended Posts

Posted

To repay your efforts, I have completed the Korean localization so that more Korean CK3 users can access your mod.
I would be very grateful if you could apply this in the next update!

korean.zip

Posted
On 9/29/2024 at 4:58 PM, cych said:

Is it possible to write an activity that the hero travels to the lover's location to make love?

 

I am considering adding a "generic travel" feature (perhaps not an activity but simply an interaction that initiates the travel) to my other mod, Travelers. Not sure when I'll be able to find the time for that though.

 

If you are playing as landed adventurer, you can of course move your camp at will so you basically have that built in.

Posted
On 9/29/2024 at 3:07 PM, ipni20 said:

To repay your efforts, I have completed the Korean localization so that more Korean CK3 users can access your mod.
I would be very grateful if you could apply this in the next update!

 

Thanks, I definitely will!

Posted
On 10/6/2024 at 7:29 PM, Gromsantes said:

a slight improvement in the Russian translation

 

Thanks, will include it in the next version.

Posted
22 hours ago, Yeoman1919 said:

was this ever made compatible with the CBO Unofficial mod?

 

Yes, it's compatible. It works just like it used to work with the "official" CBO.

Posted

if you want i can help you write some better stuff. I've been roleplaying for around 8 years now including erp so i think i can cook something up

 

 

Posted
20 hours ago, DarkAlone said:

if you want i can help you write some better stuff. I've been roleplaying for around 8 years now including erp so i think i can cook something up

 

What do you have in mind? Most of the text in this mod is quotes from works of literature, mostly classics and public domain. The really laborous part is finding high quality quotes and categorizing them so that they show up in sex scenes appropriately, see "localization/english/carnx_sex_scene_quotes_l_english.yml". If you are interested in helping with this, it would be most welcome.

Posted

Seems to be incompatible with the CBO unofficial continuation with the newest patch, if you use carnal court make love with CLR enabled it doesn't properly end and now the court has the bed stuck in it and the participants are naked afterwards. 

Posted
5 hours ago, wertwert5555 said:

Seems to be incompatible with the CBO unofficial continuation with the newest patch, if you use carnal court make love with CLR enabled it doesn't properly end and now the court has the bed stuck in it and the participants are naked afterwards. 

 

This you will also have with just CBO if you don't click "That was fun" but simply close the window. Please always click on the button to avoid the issue.

Posted
8 minutes ago, pharaox said:

 

This you will also have with just CBO if you don't click "That was fun" but simply close the window. Please always click on the button to avoid the issue.

 

Hi, In latest CBO Unofficial version, I integrated parts of CBO Carnal Court Lite, so some of the files were changed.

One is that I'm using carnal_court_leave_court_effect, which CLR seems to overwrite to do nothing, maybe thats why there is no proper cleanup after the sex scene.

 

Also seems like with CLR the carnal court interaction doesn't work for characters that don't have royal court, probably due to the changes by Carnal Court Lite, it uses a trick that if you dont have a royal court, an event can happen instead in the lieges court, but with CLR seems like it falls back to Carnalitas event instead of starting the royal court event.

Posted
41 minutes ago, pharaox said:

 

This you will also have with just CBO if you don't click "That was fun" but simply close the window. Please always click on the button to avoid the issue.

I always click that was fun, not the issue in this case. 

Posted
On 10/11/2024 at 10:22 PM, pharaox said:

 

This you will also have with just CBO if you don't click "That was fun" but simply close the window. Please always click on the button to avoid the issue.

 

Hi, would it be possible to make changes to make this compatible with CBO Unofficial 1.3?

In 1.3, I integrated changes made by CBO Carnal Court Lite, which was triggering the carnal court scene differently, so now it seems to not work well with CLR

 

As far as I can see, the changes would be:

"common\character_interactions\carnx_carnal_court_sex_interaction.txt"

"common\character_interactions\carnx_carnal_court_demand_sex_interaction.txt"

 

            hidden_effect = {
                # Actually fire the sex scene
                if = {
                    limit = { has_royal_court = yes }
                    carnx_carnal_court_sex_scene_effect = {

 

Need to remove "limit = { has_royal_court = yes }", because now characters without royal court can also have carnal court sex scene.

 

"common\scripted_effects\zzz_carnal_court_entry_effects.txt"

This file should be removed, as it overrides the CBO cleanup function

 

"common\scripted_effects\carnx_sex_scene_effects.txt"


 

carnx_carnal_court_sex_scene_effect = {
    $PLAYER$ = {

...

        # Trigger carnal_court_sex_scene
        trigger_event = {
            on_action = carnal_court_sex_scene
        }

        # Open Royal Court view
        carnal_court_enter_court_effect = yes

 

The last 2 should be swapped, as the enter court effect sets some flags that are used by the scene.

 

So should be
 

        # Open Royal Court view
        carnal_court_enter_court_effect = yes
        
        # Trigger carnal_court_sex_scene
        trigger_event = {
            on_action = carnal_court_sex_scene
        }

 

Posted

@csirke128 Thanks for your input, will look into this. Is CBO Unofficial 1.3 very recent? Last time I checked (2 weeks ago), it all used to work well (and still does on my side, since I haven't updated CBO since then). Was it really necessary to make incompatible changes in 1.3, and so force other mods to update as well?

 

If I make these changes, will it break compatibility for users with older versions of CBO Unofficial? How about the other 2 CBO flavors (lite and ultra lite), will it work with them as well?

 

I overrode carnal_court_leave_court_effect because I it caused issues with the version of CBO I tested back then. I will check to see if these are now resolved.

 

All in all, trying to stay compatible with CBO has been a rather frustrating experience so far, as I had to adapt to incompatible changes first in CBO, and now in CBO Unofficial, several times. Would it be possible to keep CBO Unofficial stable from now on, in terms of the effects needed to correctly fire its sex scenes?

Posted
8 minutes ago, pharaox said:

@csirke128 Thanks for your input, will look into this. Is CBO Unofficial 1.3 very recent? Last time I checked (2 weeks ago), it all used to work well (and still does on my side, since I haven't updated CBO since then). Was it really necessary to make incompatible changes in 1.3, and so force other mods to update as well?

 

If I make these changes, will it break compatibility for users with older versions of CBO Unofficial? How about the other 2 CBO flavors (lite and ultra lite), will it work with them as well?

 

I overrode carnal_court_leave_court_effect because I it caused issues with the version of CBO I tested back then. I will check to see if these are now resolved.

 

All in all, trying to stay compatible with CBO has been a rather frustrating experience so far, as I had to adapt to incompatible changes first in CBO, and now in CBO Unofficial, several times. Would it be possible to keep CBO Unofficial stable from now on, in terms of the effects needed to correctly fire its sex scenes?

 

Hi, the need for change was to get rid of the "royal court for everyone" change, as it causes performance issues, and some weird problems with languages. The other reason was, that due to the introduction of administrative governments, these characters had no access to royal court, even with the changes CBO made. So there was a need to trigger carnal court, even if the character has no access to a court. (otherwise this feature would be locked out for characters in the byzantine empire, if they are not the emperor)

 

Those who are using old versions of CBO Unofficial don't need to be supported.

 

CBO Unofficial Lite is same as CBO Unofficial when it comes to court and sex interractions, while CBO Unofficial Ultra Lite has no sex scenes. (I gave ultra lite a different trigger, so it no longer sets cbo_body_active, it sets a different flag, so when it comes to compatibility, there is no need to keep it compatible with all 3, only with CBO Unofficial)

 

I cannot see into the future, but don't think there will be a need to change how sex scenes are triggered. Only changes I can foresee are changes once the even was triggered, and those should not really conflict with CLR.

Posted
On 10/6/2024 at 7:29 PM, Gromsantes said:

a slight improvement in the Russian translation

 

Unfortunately, the files in the Russian translation archive seem encoded inappropriately and my editors can't read them. They should be encodes as "UTF8 with BOM".

 

image.png.a2066a8f0721765d47cb820f7cff5f53.png

Posted
2 hours ago, csirke128 said:

I cannot see into the future, but don't think there will be a need to change how sex scenes are triggered. Only changes I can foresee are changes once the even was triggered, and those should not really conflict with CLR.

 

Thanks a lot for the detailed explanations! Getting rid of "royal court for everyone" is definitely a great improvement, thanks for taking care of this. I introduced the changes you suggested, except that I made the type of sex scene (Carnal Court or original) selectable via an option, since both types are now always available and both seem to work fine.

 

When I use the "Carnal Court" scenes with a ruler without a royal court, everything seems to work fine, except that I see errors in error.log similar to this one:

 

[16:05:14][E][jomini_script_system.cpp:284]: Script system error!
  Error: has_court_type trigger [ Character must have a royal court, but does not. ]
  Script location: file: gfx/court_scene/character_roles/00_default_roles.txt line: 1647 (low_prio_intriguers:chance)

 

These are probably not critical, not sure if anything could (or should) be done about them.

Posted (edited)

I just released new version 0.5.1, see file. The new version is now compatible with the CBO Unofficial 1.3. Please use this CBO Unofficial version as it contains a number of major improvements over the previous one. Thanks @csirke128 for your help!

 

The new version also contains a Korean translation by @ipni20.

 

@wertwert5555 It should work properly now. The previous version doesn't work with CBO Unofficial 1.3 due to incompatible changes introduced in that version, as explained in earlier posts.

Edited by pharaox

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...