Jump to content

Modding Concubines Question (Solved)


xfacedownx

Recommended Posts

Posted

*EDIT - So I think I've figured out another way. I add the following code instead to character_interactions/00_marriage_interaction (using a trait instead of head of faith). But I also needed to create a new gender succession law, as that also plays a role with concubines. I'll leave this post up, in case anyone else needs the info.

 

Quote

OR = {
                AND = {
                has_faith = faith:my_faith
                is_male = yes
                has_trait = my_faith
                }
            }

 

ORIGINAL POST BELOW

So I want to make it so only the head of faith can have concubines (male only). I've tried editing the important_actions/00_marriage_actions file, but this only seems to make it so no one can have concubines within the religion.

 

I used this code under every allowed_concubines section. However this is what blocks all concubines (00_marriage_actions file). I also added the code to character_interactions/marriage_interaction, but I feel that's irrelevant for now, until I solve the no concubines issue.

Quote
OR = {
                NOT = {
                    has_faith = faith:my_faith
                }
                AND = {
                    has_faith = faith:my_faith
                    is_head_of_faith = yes
                }
            }

 

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...