Jump to content

Recommended Posts

Posted
2 hours ago, Galishai said:

If you installed Carnalitas Dei, which version of Carnalitas Mundi should you use?

 

You should use the latest version of both mods. Currently the latest version of Carnalitas Mundi is reversion-1.0.

Posted
On 3/18/2021 at 2:29 AM, Cheri Song said:

 

You should use the latest version of both mods. Currently the latest version of Carnalitas Mundi is reversion-1.0.

 

Thanks!  I am starting a new game now, ready to update to those versions.

  • 4 months later...
  • 6 months later...
Posted (edited)

Suggestion: A Cultural ethos tradition that makes all the members of said culture al least beauty_good_1?

Edited by fakyfaky
Posted

I like the idea of sexual cultural traditions from the latest update! What other unusual traditions can people think of that would be add some flavor?

 

- A tradition that interacts with the court fashion maybe? It is expected that members of the court wear reveeling or provocative clothes while attending the royal court. 

- A new minor title/court position for royal escorts? Level of proficiency is based on the characters attractiveness/diplomacy; and gives extra scheme success chance?

 

What can we come up with?

Posted

How did you turn a religious parameter from polyamorous  in to a cultural parameter?

 

I see the value "carn_no_consequences_for_extramarital_sex_with_others" how did you create this?

Posted
On 3/6/2022 at 8:49 PM, Ozvelpoon said:

I like the idea of sexual cultural traditions from the latest update! What other unusual traditions can people think of that would be add some flavor?

 

- A tradition that interacts with the court fashion maybe? It is expected that members of the court wear reveeling or provocative clothes while attending the royal court. 

- A new minor title/court position for royal escorts? Level of proficiency is based on the characters attractiveness/diplomacy; and gives extra scheme success chance?

 

What can we come up with?

Maybe a nudist cultural tradition, like the Natural Primitivism religion tenet, but without the restrictions NP has on criminalizing doctrines.

Posted

Is there a court-type trait associated with the decadent/erotic court type? Maybe I just haven't had my court as decadent and a high enough level for the required period of time for it to show up.

  • 4 weeks later...
Posted

With the Erotic Court giving the Invite Courtesans, is it possible to have it invite males instead of females? Perhaps a different decision, or a way to choose what sort you wish to invite?

Posted (edited)
23 hours ago, Quipore said:

With the Erotic Court giving the Invite Courtesans, is it possible to have it invite males instead of females? Perhaps a different decision, or a way to choose what sort you wish to invite?

If I remember, if you a female ruler than three males for you and for male it is three females. If you meant as an option to choose either. This is yet to be implement or may not be implement. Depending on the mod author decision.

Edited by sagimine1
Posted
12 hours ago, sagimine1 said:

If I remember, if you a female ruler than three males for you and for male it is three females. If you meant as an option to choose either. This is yet to be implement or may not be implement. Depending on the mod author decision.

I'm playing as a female and I get three females every time. I could be doing something wrong, but idk.

Posted
On 4/21/2022 at 10:13 AM, Quipore said:

I'm playing as a female and I get three females every time. I could be doing something wrong, but idk.

Just check how the decision of how it is scripted and made to launch. It does not check for gender regardless if ruler is a male or female. The only check it does is to make sure AI rarely to none use the decision. Ensure they courtier have good traits along with them. All of them will have the lustful trait as mandatory trait.

Posted
13 hours ago, sagimine1 said:

Just check how the decision of how it is scripted and made to launch. It does not check for gender regardless if ruler is a male or female. The only check it does is to make sure AI rarely to none use the decision. Ensure they courtier have good traits along with them. All of them will have the lustful trait as mandatory trait.

Thanks for investigating how it works so now I know I'm not just a dunderhead. So it is on Charsi if we get male courtesans or not then. Hopefully they'll consider this.

My ideal would be that you use the event and it brings up a window with a choice: "Three female" "Three male" "random mix"

Posted
16 hours ago, sagimine1 said:

Just check how the decision of how it is scripted and made to launch. It does not check for gender regardless if ruler is a male or female. The only check it does is to make sure AI rarely to none use the decision. Ensure they courtier have good traits along with them. All of them will have the lustful trait as mandatory trait.

It's not in the decision directly, but in the template used to generate the character, see carnm_waifu_template and carnm_female_unless_root_doesnt_like_women_chance.

2 hours ago, Quipore said:

Thanks for investigating how it works so now I know I'm not just a dunderhead. So it is on Charsi if we get male courtesans or not then. Hopefully they'll consider this.

My ideal would be that you use the event and it brings up a window with a choice: "Three female" "Three male" "random mix"

I assume your character is bisexual, that's why you only get women. If you don't want to use the decision to change your character's attraction, you could tinker with the chance. e.g. if you want bisexual characters to get a 50/50 mix, replace carnm_female_unless_root_doesnt_like_women_chance in common/script_values/camm_script_values.txt with

carnm_female_unless_root_doesnt_like_women_chance = {
	if = { # bisexual
		limit = {
			root = {
				is_attracted_to_women = yes
				is_attracted_to_men = yes
			}
		}
		add = 50
	}
	else_if = { # only attracted to women
		limit = {
			root = {
				is_attracted_to_women = yes
			}
		}
		add = 100
	}
	else = { # only attracted to men
		add = 0
	}
}

(or whatever other percentages you want)

Posted
9 hours ago, Noutei said:

It's not in the decision directly, but in the template used to generate the character, see carnm_waifu_template and carnm_female_unless_root_doesnt_like_women_chance.

I assume your character is bisexual, that's why you only get women. If you don't want to use the decision to change your character's attraction, you could tinker with the chance. e.g. if you want bisexual characters to get a 50/50 mix, replace carnm_female_unless_root_doesnt_like_women_chance in common/script_values/camm_script_values.txt with

carnm_female_unless_root_doesnt_like_women_chance = {
	if = { # bisexual
		limit = {
			root = {
				is_attracted_to_women = yes
				is_attracted_to_men = yes
			}
		}
		add = 50
	}
	else_if = { # only attracted to women
		limit = {
			root = {
				is_attracted_to_women = yes
			}
		}
		add = 100
	}
	else = { # only attracted to men
		add = 0
	}
}

(or whatever other percentages you want)

Would it not be 50/50 base of the default value? I did not notice this file and only focus on the waifu itself. How is it going to be 50/50, when the invite decision brought three characters to your court? Unless there is something amiss.

Posted
10 hours ago, Noutei said:

It's not in the decision directly, but in the template used to generate the character, see carnm_waifu_template and carnm_female_unless_root_doesnt_like_women_chance.

I assume your character is bisexual, that's why you only get women. If you don't want to use the decision to change your character's attraction, you could tinker with the chance. e.g. if you want bisexual characters to get a 50/50 mix, replace carnm_female_unless_root_doesnt_like_women_chance in common/script_values/camm_script_values.txt with

carnm_female_unless_root_doesnt_like_women_chance = {
	if = { # bisexual
		limit = {
			root = {
				is_attracted_to_women = yes
				is_attracted_to_men = yes
			}
		}
		add = 50
	}
	else_if = { # only attracted to women
		limit = {
			root = {
				is_attracted_to_women = yes
			}
		}
		add = 100
	}
	else = { # only attracted to men
		add = 0
	}
}

(or whatever other percentages you want)

 

I tried this and it didn't seem to change anything. Possible I messed it up and did it wrong. I am rather computer illiterate.

 

To be clear: Yes, I'm playing a bisexual female ruler. Using Charsi's succubus mod. I saved before taking the decision and got three women. I loaded and waited a month and got three different women. Loaded, waited a couple of months and got three different still women. So clearly either something is wrong or I did something wrong.

Posted
11 hours ago, sagimine1 said:

Would it not be 50/50 base of the default value? I did not notice this file and only focus on the waifu itself. How is it going to be 50/50, when the invite decision brought three characters to your court? Unless there is something amiss.

With 50/50 I just meant that each of them has a 50% chance i.e. you get 1.5 women and 1.5 men on average. If you're (un)lucky you can still only get one gender of course. You could modify the event to spit out 3 women or 3 men, but this is simpler and fits well enough, I think.

10 hours ago, Quipore said:

 

I tried this and it didn't seem to change anything. Possible I messed it up and did it wrong. I am rather computer illiterate.

 

To be clear: Yes, I'm playing a bisexual female ruler. Using Charsi's succubus mod. I saved before taking the decision and got three women. I loaded and waited a month and got three different women. Loaded, waited a couple of months and got three different still women. So clearly either something is wrong or I did something wrong.

Whoops, no, you're right. I only tested it with the random event, not the decision, which apparently uses a different template.

In the same file there is carnm_prostitute_gender_or_root_attraction_gender_chance that you'll have to modify in the same manner.

e.g. (if you want to keep the game rule constraint):

 

Spoiler
carnm_prostitute_gender_or_root_attraction_gender_chance = {
	if = {
		limit = {
			has_game_rule = carn_prostitution_content_female_only
		}
		add = 100
	}
	else_if = {
		limit = {
			has_game_rule = carn_prostitution_content_male_only
		}
		add = 0
	}
	else_if = {
		# bisexual
		limit = {
			root = {
				is_attracted_to_women = yes
				is_attracted_to_men = yes
			}
		}
		add = 50
	}
	else_if = {
		# only attracted to women
		limit = {
			root = {
				is_attracted_to_women = yes
			}
		}
		add = 100
	}
	else = {
		# only attracted to men
		add = 0
	}
}

 

 

Posted
5 hours ago, Noutei said:

 

Whoops, no, you're right. I only tested it with the random event, not the decision, which apparently uses a different template.

 

 

This one works. Thank you bunches.

Posted (edited)

I've never seen an event like in the screenshots. Not in 100s of years ingame time with male rulers.

Edited by xyzxyz
Posted (edited)

I got the prostitution tradition, but sadly to language problems I'm not entirely sure what it does ingame. It looks weird with a german base game^^ I have a slave as prostitute and I still loose faith. Why do i loose faith and not her?

Edited by xyzxyz

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