Jump to content

[mod] CBO Unofficial


Recommended Posts

Posted

Apparently Elf Destiny was updated (I think) cuz when i try it now, none of the characters will render, even with the ED CBO patch, anyone else notice this? It worked fine a couple weeks ago with the patch.

Posted

For some reason, my male character's penis model would suddenly get smaller.
I have no way to pinpoint the cause, but it's in my archives and it tends to happen around the time of a jump out of courtship or dating event.

Posted
On 10/21/2024 at 7:05 PM, csirke128 said:

 

Dont think there is a different sex animation for PA, so maybe its just that height difference is causing issues.

Might be related to the order that animations are applied to the body, like does the animation make the character small, and then add the animation, or add the animation and then make them small. Seems like the issue is that it applies height first. Found that there is a different height animation in CBO that seems to shrink the body at the penis/vagina, so maybe that would help, but I dont see it used anywhere in the mod, so rather strange. Maybe it was used before but there were issue or not sure.

I'll try do something with animations (its on the todo list) but height is difficult to do, not even sexlab for skyrim deals with it that good.

 

Looking at this issue, I think it might be something to do with dick size, oddly enough, as it seems to get more pronounced the bigger the cock. Maybe the anims are somehow starting from the bell end rather than the shaft (to put it bluntly)?

Posted
9 hours ago, cascinova said:

Apparently Elf Destiny was updated (I think) cuz when i try it now, none of the characters will render, even with the ED CBO patch, anyone else notice this? It worked fine a couple weeks ago with the patch.

 

Try disabling Color Picker For Clothes. Characters not rendering is a new incompatibility reported on the ED discord.

Posted
16 hours ago, 9TailedYokai said:

I'm running into an issue where my characters stay naked after animation despite getting them to put clothes on, got no idea why that's happening, any way to fix it?

This may be related to the Carnelitas undress/redress effect



 

Spoiler

carn_undress_character_effect = {
    if = {
        limit = {
            NOT = { has_character_flag = is_naked }
        }
        add_character_flag = {
            flag = is_naked
            days = 180 # So character won't stay naked forever when something goes wrong
        }
    }
    else = {
        # A local variable will be automatically removed after the event chain has been completed.
        set_local_variable = {
            name = character_was_already_naked
            value = yes
        }
    }
}

carn_dress_character_effect = {
    if = {
        limit = {
            NOT = { exists = local_var:character_was_already_naked }
        }
        remove_character_flag = is_naked
    }

 


 

 

As you can see it automatically detects if a character is already naked when the effect is triggered, flags it and then does not redress them during the redress effect. Removing the 'is_naked' character flag explicitly via console/event should fix it if these effects are the culprit.

Posted
17 hours ago, 9TailedYokai said:

I'm running into an issue where my characters stay naked after animation despite getting them to put clothes on, got no idea why that's happening, any way to fix it?

 

If you are using carnalitas love reimagined, make sure its latest version. Do the characters put their clothes back after 30 days?

Posted
18 hours ago, railgun_10032_ said:

Machine translation: How do I cancel the court at the duchy level and below?

 

Hi, do you mean, you have a court event while being a duke or count?

Or do you mean to add the court back for counts and dukes? (in 1.3 it was changed that counts and dukes dont have court room)

Posted

Hi, for some reason my throne room is perma-stuck on the carnal court bed, and my character is naked all the time. Sometimes when i start up the game its fixed and i can view the throne room and then it flips back to being stuck on the carnal court after a year or so. 

 

I havent changed my mods around and everything was working fine up until a few days ago. 

 

Was wondering, which files do i need to remove to get rid of carnal court - i honestly never really use it anyways and just want access to my throne room. I'm just using the main cbo file i dont have carnal court as a separate mod or anything.

Posted
3 minutes ago, Wodenaz said:

Hi, for some reason my throne room is perma-stuck on the carnal court bed, and my character is naked all the time. Sometimes when i start up the game its fixed and i can view the throne room and then it flips back to being stuck on the carnal court after a year or so. 

 

I havent changed my mods around and everything was working fine up until a few days ago. 

 

Was wondering, which files do i need to remove to get rid of carnal court - i honestly never really use it anyways and just want access to my throne room. I'm just using the main cbo file i dont have carnal court as a separate mod or anything.

 

Hi, if it changes without doing carnal court  scene, then maybe you have some mod conflict, so another mod adds a court room, and doesnt have the trigger to prevent the CBO carnal court to show up outside of carnal court scene.

 

The court room is in "CBO Unofficial\gfx\court_scene"

So if you remove that, then carnal court won't work well, but you shouldnt see the CBO court rooms anymore either.

For character being stuck naked, that is likely due to some mod overwriting the cleanup for carnal court, for example Carnalitas Love Reimagined did that, but should be fine on latest version, so if you are using that, also make sure to update that mod.

Posted

Thanks for swift reply, yeah i'm not using love reimagined either, i am using regula magistri 2 mod, wives are perma naked so perhaps its that? I was looking through the files and there seems to be naked checks? Could be wrong, not sure how to remedy that. Strange though, it was working before and ive changed nothing. No other mods add a court, the game did have a little update a couple days ago now i think of it, could be that. I can live with my character being naked i can still manually put clothes back on but after a while he undresses, looking at the barbershop naked seems to tick itself back on every so often.

 

I don't think its anything to do with cbo unofficial i know its completely on my end, I'll remove that folder, thanks for the help :)

Posted

Thank you so much for this mod! You truly are doing the Lord's work!

Posted

Best Mod ever.... now it is lot easier to make clothing compatible with eachother.

 

Mango if you ever come back, do those fancy clothings cutting. use this mod as basis.

 

Thank you again for the mod Csirke. 

Posted

Thanks for taking over the mod mate.
Is it possible to make a compatch for the attire in sappho's daughters II ?
Also, someone, for the love of god. Add balls to futa.
Sincerely yours, another perv.

Posted
47 minutes ago, marinara said:

Thanks for taking over the mod mate.
Is it possible to make a compatch for the attire in sappho's daughters II ?
Also, someone, for the love of god. Add balls to futa.
Sincerely yours, another perv.

The SD2 patch (here in downloads) from late September was still working just fine as of last week. Is it not working anymore?

 

Posted
On 10/24/2024 at 8:29 PM, cascinova said:

Apparently Elf Destiny was updated (I think) cuz when i try it now, none of the characters will render, even with the ED CBO patch, anyone else notice this? It worked fine a couple weeks ago with the patch.

On 10/25/2024 at 5:47 AM, ventrolo said:

 

Try disabling Color Picker For Clothes. Characters not rendering is a new incompatibility reported on the ED discord.

I saw this morning that elf destiny was updated with a changelog saying :
"Fully integrated Better Barbershop Mod
Fully integrated Color Picker for Clothing Mod"

 

I haven't played ED in a bit but hopefully that update fixes your issue. Otherwise might have to wait for a new ED CBO patch

 

 

Posted

@csirke128 
Hey me again. Got something odd with the new update to CBO/PA. Whenever I start a new character whatever dick trait they are given in ruler designer is over written completely. Also it just doesn't have a trait description at all. Haven't tested it with landed characters or non dick traits.eb06f6593ceb42c5f6adb8808c96bab0.png

2118df77b8d5631048e216d0d09e25d5.png

error.log

Posted
8 minutes ago, Dankdentryyyyy said:

@csirke128 
Hey me again. Got something odd with the new update to CBO/PA. Whenever I start a new character whatever dick trait they are given in ruler designer is over written completely. Also it just doesn't have a trait description at all. Haven't tested it with landed characters or non dick traits.eb06f6593ceb42c5f6adb8808c96bab0.png

2118df77b8d5631048e216d0d09e25d5.png

error.log 18.16 MB · 0 downloads

Also getting this. Exactly the same bug.

Posted (edited)
2 hours ago, Dankdentryyyyy said:

@csirke128 
Hey me again. Got something odd with the new update to CBO/PA. Whenever I start a new character whatever dick trait they are given in ruler designer is over written completely. Also it just doesn't have a trait description at all. Haven't tested it with landed characters or non dick traits.eb06f6593ceb42c5f6adb8808c96bab0.png

2118df77b8d5631048e216d0d09e25d5.png

error.log 18.16 MB · 0 downloads


Same here. The traits no longer have any description.


Oh and for some unknown reason now the carnal court scenes do no longer work.
It shows the throne room with the options but no scene. However this could be related to Elf Destiny and the added courtroom

Edited by GDG
Posted

Hmm mango did that with two kind of traits one is player trait (dicks breast etc) 

the other gets removed on the go, and get randomised.  I haven't used PA for a long time since LOD.

 

But if there are not two kind of Dicks and Breast etc.. they get randomised. 

Not that I care, I usually play with console and then when the flags is there for geneseeded I just console the Dick/Breast back. 

Posted

I can't find the diff patch for 1.3 - 1.4 on the download list. Is there one or should i download the entire 1.4? thanks for the great work btw.

Posted
7 hours ago, Dankdentryyyyy said:

@csirke128 
Hey me again. Got something odd with the new update to CBO/PA. Whenever I start a new character whatever dick trait they are given in ruler designer is over written completely. Also it just doesn't have a trait description at all. Haven't tested it with landed characters or non dick traits.eb06f6593ceb42c5f6adb8808c96bab0.png

2118df77b8d5631048e216d0d09e25d5.png

error.log 18.16 MB · 1 download

 

I added some dummy traits for carnalitas with the file name aaa_.. so its overwritten by Carnalitas, as it has file name carn... I guess I forgot that PA uses file name 01... and that a > 0,

I'll update the PA mod, but just need to rename

"PA Unofficial\common\traits\01_PA_dick_traits.txt" to PA_dick_traits.txt

"PA Unofficial\common\traits\01_PA_tits_traits.txt" to PA_tits_traits.txt

 

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