Jump to content

[mod] Character Body Overhaul


Recommended Posts

My download speed is over 2MB/sec. But when downloading halfway, it suddenly stop (and fail). I could not download the files. Is there ary mirror download on rapidgator or other places? In addition, could it be the high download speed cause the interruption?

 

Thank you.

Link to comment
3 hours ago, Grey Cloud said:

Have a look at previous pages of this thread, there are some load orders there which show the mods.

 

 

 

As the picture I tagged, the launcher did found the existence of mod files but it just doesn't work in game.
I mean did I missed something here?
CBO Animations Pack required? 
Did I need to create new game after the installation?

 

 

Character Body Overhaul
Character Body Overhaul Clothes 1
Character Body Overhaul Clothes 2
Character Body Overhaul Clothes 3
Character Body Overhaul Clothes 4
Carnalitas

 

 

lklkl.jpg

Edited by pusspeepers
Link to comment
39 minutes ago, pusspeepers said:

I mean did I missed something here?

Yes!

 

Character Body Overhaul
Character Body Overhaul Clothes 1
Character Body Overhaul Clothes 2
Character Body Overhaul Clothes 3
Character Body Overhaul Clothes 4
CK3 Human Phenotype Project
Carnalitas
Physical Attributes
CBO Animations Pack
Coetus Anima

 

Install those mods in that order and you will see animations.

 

Link to comment
13 hours ago, Grey Cloud said:

Yes!

 

Character Body Overhaul
Character Body Overhaul Clothes 1
Character Body Overhaul Clothes 2
Character Body Overhaul Clothes 3
Character Body Overhaul Clothes 4
CK3 Human Phenotype Project
Carnalitas
Physical Attributes
CBO Animations Pack
Coetus Anima

 

Install those mods in that order and you will see animations.

 

It works now. Thanks.
But there are some bugs with bone and position with some character, idk why.

as pictures below
 

asda.jpg

sss.png

Edited by pusspeepers
Link to comment

In my experience the animations only work properly when both actors are at an age where they can be naked.

While with vanilla CK3 this is 16, Carnalitas (I think it's this one) pushes this age up to 18, meaning if you have someone below 18 have sex, the outcome can be seen on your screenshot.

And considering that the second actor is wearing the night-gown... thing, I'm pretty confident that's exactly what's happening in the screenshot.

Link to comment
6 hours ago, NoNickNeeded said:

And considering that the second actor is wearing the night-gown... thing, I'm pretty confident that's exactly what's happening in the screenshot.

Yep.

I think the mod changing the adult age is Coetus Anima. The settings are in common\defines\18 adulthood.txt for the ages but there is another file in the main CK3 folder which sets at what age the nightshirt is no longer used.

Link to comment
1 hour ago, NoNickNeeded said:

Hmm... at 27 that char should definitely have been stripped...

Could it be that the character was ill and thus forced into the robe in a way the mods weren't able to strip her out of?

illness.. I don't remember. haha
I see some characters that using the same clothes got the same bug, too. 
(also happened to the other 2-3 set of clothes)

Link to comment

 

Hi

 

a newbie question

 

I create test event with "sex_doggy" animation however the model is not align   

i also has coetus anima mod which trigger properly align model

 

did i miss some setting in the event?

 

my load order

 

cbo

cbo clothes 1

cbo clothes 2

cbo clothes 3

cbo clothes 4

coetus anima

regula magistri

mymod

 

 

 

 

Spoiler
hive_sex.0001 ={

    type = character_event  
    title = hive_sex.0001_t
    desc = hive_sex.0001_desc
    
    trigger = {
			is_ai = no
	}	
	theme = hunt_activity
	
	left_portrait = {
        character = root
        animation = sex_doggy
        outfit_tags = { no_cloak no_hat no_pants no_clothes }
    }
    right_portrait = {
        character = root.primary_spouse
        animation = sex_doggy
        outfit_tags = { no_cloak no_hat no_pants no_clothes }
    }
   
	option = { 
			name = hive_quest.0001.a
			
	}
}

Untitled.png

Link to comment
7 hours ago, gorog22 said:

Does CBO aren't compatible with Carnalitas and it's submod ?? My game crash a lot when using both CBO and carnalitast. Have no issue with using Carnalitas and it's submod before installing CBO...

Carnalitas and CBO are compatible. Have you tried loading only CBO (i. e. CBO and CBO Clothes 1 to 4) and Carnalitas to see if that works? If it does, just add the rest of your mods one after the other to see which one exactly causes the crash. Also, make sure you're on the latest game version (1.4.4 Azure) and you're using the latest version of Carnalitas (1.5.2).

Link to comment

I can't make this work... The females are all distorted in game without breasts and the sliders aren't working on them, except for the weight one. I tried adjusting my load order to the one recommended in these threads or on mod pages but it didn't help.

 

Edit: Solved it by moving CBO to the very bottom of load order.

Edited by Durante
Link to comment

Hi 

Did this mod need to use carnalitas to do animation properly?

I manage to align it follow coetus anima example code and read from carnalitas wiki

 

I trigger my event using decision

 

I add My scene to carnalitas on action

 

currently actor align properly but the code trigger two event, one is mine and the other is one of carnalitas built in scene 

I read CBO change log example but that also for carnalitas

 

So anyone can help with non carnalitas code example please

or maybe someone can give advise with how to change carnalitas PLAYER and TARGET without calling scene from carnalitas?

 

I appreciated all advise

 

Thank you

 

Hi Just back to give update

I manage to make it work without carnalitas, 

 

Spoiler

hive_sex.0001 ={

    type = character_event  
    title = hive_sex.0001_t
    desc = hive_sex.0001_desc
    
      theme = seduce_scheme
    
    left_portrait = {
        character = root
        animation = sex
        outfit_tags = { no_cloak no_hat no_pants topless }
    }
    right_portrait = {
        character = root.primary_spouse
        animation = sex
        outfit_tags = { no_cloak no_hat no_pants topless }
    }

    trigger = {
        #carn_sex_scene_is_consensual = yes
        #sex_opposite_of = root.primary_spouse
        is_ai = no
        #is_male = yes
    }    

    immediate = { 
        
        if = {
            limit = {
                root.age >= 18
                root.primary_spouse.age >= 18
                Not = { exists = global_var:sex_animation_event }
            }
            set_global_variable = {
                name = sex_animation_event
                value = 1
            }
        }
        else_if = {
            limit = {
                root.age >= 18
                root.primary_spouse.age >= 18
                exists = global_var:sex_animation_event
            }
            change_global_variable = {
                name = sex_animation_event
                add = 1
            }
        }
    }
    option = { #Finish
        name = hive_sex.0001.a
    }
}

 

Edited by useck
Link to comment
2 hours ago, Durante said:

I can't make this work... The females are all distorted in game without breasts and the sliders aren't working on them, except for the weight one. I tried adjusting my load order to the one recommended in these threads or on mod pages but it didn't help.

 

Edit: Solved it by moving CBO to the very bottom of load order.

Sounds like you have a mod which clashes with CBO. You shouldn't have to put CBO right at the bottom of your LO - see the LOs higher up in this thread.

Either post your LO here or just try moving CBO up the LO one place at a time.

Link to comment

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

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more information, see our Privacy Policy & Terms of Use