Mange2020 Posted July 17, 2021 Author Posted July 17, 2021 12 hours ago, luffyboy said: Reveal hidden contents mange I really like what you did with coetus anima, it was a much more fleshed out mod compared to my carnalities preference trait mod. im really hoping you would share your mods again if you do update both anima and this mod. one thing i would really really like to see would be a simple xml file that users can edit that defines the range/distribution of the physical attributes (for racial height maybe it’s a value addition rather than absolute value) and also the weightage (even better if we can define the distribution of weightage to reflect how much of the pop is a boob/butt guy or cock size queen) and general default distribution preference for specific physical sizes im happy to help with the scripting if there is a GitHub or something to contribute to. I’m not a coder by profession but got some amateur experience with the few mods I made here. That would be great! I basically never have the time to do all the stuff I have planned out, and having other people add their own ideas to add depth would be awesome. I've never actually modded before I made these, so I'll need to look into how I would set that up.
yoyoman69 Posted July 21, 2021 Posted July 21, 2021 (edited) Can you make a compatibility patch for this? https://steamcommunity.com/sharedfiles/filedetails/?id=2228216852 Or maybe I can do it myself but never modded UI Edited July 21, 2021 by yoyoman69
SamIAmHam Posted July 21, 2021 Posted July 21, 2021 1 minute ago, yoyoman69 said: Can you make a compatibility patch for this? https://steamcommunity.com/sharedfiles/filedetails/?id=22282 Or maybe I can do it myself but never modded UI That file won't work with CK3 since it's for Skyrim. I think you linked the wrong thing.
yoyoman69 Posted July 21, 2021 Posted July 21, 2021 5 hours ago, SamIAmHam said: That file won't work with CK3 since it's for Skyrim. I think you linked the wrong thing. Yeah, I changed it right away, the last numbers were missing for some reason https://steamcommunity.com/sharedfiles/filedetails/?id=2228216852 is the link, it lets you change the names of children of your dynasty 1
SamIAmHam Posted July 21, 2021 Posted July 21, 2021 (edited) 5 minutes ago, yoyoman69 said: Yeah, I changed it right away, the last numbers were missing for some reason https://steamcommunity.com/sharedfiles/filedetails/?id=2228216852 is the link, it lets you change the names of children of your dynasty I just wanted to let you know so you could change it. Oh I almost forgot, but you should try Irony Mod Manager. It works with Stellaris, CK3, HO4, and IR. It can help you find incompatibilities in mods then make a patch for them. Edited July 21, 2021 by SamIAmHam
Tyrgalon Posted August 9, 2021 Posted August 9, 2021 @Mange2020 Is the new update compatible with old saves? Wondering due to the changes to extreme values etc.
Mange2020 Posted August 10, 2021 Author Posted August 10, 2021 On 8/9/2021 at 10:18 AM, Tyrgalon said: @Mange2020 Is the new update compatible with old saves? Wondering due to the changes to extreme values etc. Yeah it’s compatible with old saves. The changes in extreme values have to do with setting the size values at birth. So you won’t start seeing changes in how characters in any given game look for about 20 years. 1
tarasxbulba Posted August 10, 2021 Posted August 10, 2021 im kinda new to modding so sorry if the answer is obvious but is there a way to make this compatible with Character Body Overhaul ?
Mange2020 Posted August 10, 2021 Author Posted August 10, 2021 1 hour ago, tarasxbulba said: im kinda new to modding so sorry if the answer is obvious but is there a way to make this compatible with Character Body Overhaul ? It’s not only compatible, it’s required lol. I made this, character body overhaul, and coetus anima. So they are designed to be used together
Mange2020 Posted August 10, 2021 Author Posted August 10, 2021 3 hours ago, tarasxbulba said: welp now i feel like an idiot, thanks Don’t, I need to change the descriptions. I just changed the name of the character body overhaul last week and didn’t update the requirements for this mod lol.
fianlwish8 Posted August 11, 2021 Posted August 11, 2021 hello, this new version is not compatible with immortality. The characters are getting older and the looks are getting older. Any solution to this problem? 2
Mange2020 Posted August 17, 2021 Author Posted August 17, 2021 On 8/11/2021 at 6:58 AM, fianlwish8 said: hello, this new version is not compatible with immortality. The characters are getting older and the looks are getting older. Any solution to this problem? So I guess the good news is my attempt to make aging more modifiable worked. I'm working on making it compatible with immortality. You would just want an immortal character to be forever young, right?
fianlwish8 Posted August 19, 2021 Posted August 19, 2021 On 8/17/2021 at 9:53 PM, Mange2020 said: So I guess the good news is my attempt to make aging more modifiable worked. I'm working on making it compatible with immortality. You would just want an immortal character to be forever young, right? sounds great, thank you
kavvanshrike Posted August 21, 2021 Posted August 21, 2021 I have noticed that some carnalitas traits no longer affect the body like they used to ie. someone with gigantic penis trait will hit 18 and still have small-average penis, same story for gigantic tits.
ossram Posted August 21, 2021 Posted August 21, 2021 (edited) @Mange2020 Still testing, but... genetics doesn't work. Absolutely. Each: "exists = scope:mother", "exists = scope:real_father", "exists = scope:father", etc. in functions: "on_breast_variable" "on_butt_variable" "on_penis_variable" "on_height_variable" in file: "add_physical_trait_on_actions.txt" never returns a "true" value. Each character always receive a random genetics value. Needs to be changed to: "exists = this.mother" "exists = this.real_father" "exists = this.father" Updated: Each "scope:" needs to be changed to "this.". Edited August 21, 2021 by ossram Updated
Mange2020 Posted August 21, 2021 Author Posted August 21, 2021 (edited) 4 hours ago, ossram said: @Mange2020 Still testing, but... genetics doesn't work. Absolutely. Each: "exists = scope:mother", "exists = scope:real_father", "exists = scope:father", etc. in functions: "on_breast_variable" "on_butt_variable" "on_penis_variable" "on_height_variable" in file: "add_physical_trait_on_actions.txt" never returns a "true" value. Each character always receive a random genetics value. Needs to be changed to: "exists = this.mother" "exists = this.real_father" "exists = this.father" Updated: Each "scope:" needs to be changed to "this.". So this would normally be correct, but I trigger the on_action with on_birth_child and as mentioned in the notes in the game file # called for the newborn child # scope:child is the new born character # scope:mother is the pregnant mother # scope:father is the family father (not the biological) # scope:real_father is the biological father # scope:is_bastard, true if a known bastard The scopes are saved throughout the on_action chain. So these scopes are pre set up. This is true as long as the child is actually born. For characters that aren't born, yes it is randomized, within certain constraints to try to create a good distribution. That said it's a bit difficult to test because I wanted some randomness, since genetics aren't absolute. So people with certain genetics will tend to have children with certain traits. But within my testing its definitely passed on. One of the easiest ways to test it is to make a family super inbred. Eventually they have only one gene value in the family. Edited August 21, 2021 by Mange2020
Mange2020 Posted August 21, 2021 Author Posted August 21, 2021 5 hours ago, kavvanshrike said: I have noticed that some carnalitas traits no longer affect the body like they used to ie. someone with gigantic penis trait will hit 18 and still have small-average penis, same story for gigantic tits. Yeah this isn't compatible with the carn traits. It's a thing I've been meaning to do since forever. The issue is they both try to change the way the character looks, they are determinative rather than descriptive. So I want to make the carn traits descriptive. Just takes some time and I haven't gotten around to it.
Myloween Posted August 22, 2021 Posted August 22, 2021 (edited) 21 hours ago, Mange2020 said: Yeah this isn't compatible with the carn traits. It's a thing I've been meaning to do since forever. The issue is they both try to change the way the character looks, they are determinative rather than descriptive. So I want to make the carn traits descriptive. Just takes some time and I haven't gotten around to it. Hi, thank you for your mods, I find your approche really interesting. Concerning Carnalitas traits, I think it would be really nice if they could add a small influence on body calculations instead of beeing descriptive atrtibuts only. I don't know if it possibile or easy to do, but maybe like a small size limit for big breast traits and a large size limit for small breast traits, otherwise like an additive/subtractive value relative to the traits. Edited August 22, 2021 by Myloween
Hybrid_Banshee Posted August 28, 2021 Posted August 28, 2021 Hi, this mod looks great and I want to try it out. I'm on Mac, I downloaded your file and unzipped it then placed it into my mod folder in CK3. When I launched the game, nothing from the mod appeared and the mod didn't show up in the "playset" tab in the Paradox launcher menu or the "all installed mods" in the menu. Here's an image of the mod folder: As you can see, the folder is within the mod folder. But, when you launch the game, the mod doesn't show up in any menu and no aspects of the mod appear in-game. Wondering if Mac is being wonky and different or if there's something stupid on my part that I was so dumb I couldn't see.
nugerumon Posted August 28, 2021 Posted August 28, 2021 58 minutes ago, Hybrid_Banshee said: As you can see, the folder is within the mod folder. You need a "physical_attributes.mod" file in you mod folder.
shar95 Posted August 30, 2021 Posted August 30, 2021 Does anyone have that body resets to default(vanila) sizes(breast and butt) after a litle bit? I have no idea why. 1
gefga Posted September 7, 2021 Posted September 7, 2021 None of the mods seem to be loading for me, i've tried other orders
Andarus Posted September 19, 2021 Posted September 19, 2021 Is there a Patch for Character UI Overhaul? Or at least "Displayed Birth and Death Dates"?
doruareaba Posted October 27, 2021 Posted October 27, 2021 On 8/30/2021 at 6:51 AM, shar95 said: Does anyone have that body resets to default(vanila) sizes(breast and butt) after a litle bit? I have no idea why. I'm having the exact same problem. It seems like maybe it triggered when a character got pregnant, which made their sizes reset, and then they never went back after pregnancy? I tried to fix it with the console commands, but the breast size increase says something like "this will affect genetics, not how your character looks," and there's no change to the size. Confusingly, console commands for butt size work perfectly. Anyone have any ideas why the reset is happening, or how to use console commands to actually fix it?
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