• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

ourg

Captain
Oct 29, 2019
402
1.415
In admin government there is a big issue which is that we (and also the AI) are able to spend influence on title that can't be inherited.

In admin succession, all dejure titles of a top title are inhertited by the winner of the election of this top title

meaning for exemple : a kingdom and 2 duchies which are dejure of this kingdom; and I note kingdom 1 , duchy 2 and duchy 3

A is the winner of the succession for 1 and 3. And B is winner of 2. When the holder of the kingdom die, in any case A will have all duchies and B nothing. The succession in admin works as a primogeniture for the winner of the top title elective.

And it's clearly the case because if you click on the election button for the duchies for exemple, it will open the kingdom election UI directly.

This work also for empire title with dejure kingdoms and duchies



So my point is, why are we still able to spend influence of those titles ? It's totally pointless and we and AI can loss a lot of influence for nothing. The UI should indicate than we can't spend influence on those titles
 
  • 2Like
Reactions:
Just to point out that i've succed to fix this issue.

For the trigger to select the title on the UI, i've added 3 trigger_if :

game\common\scripted_triggers\07_ep3_triggers.txt for the trigger is_appointment_valid_trigger

Perl:
trigger_if = {
            limit = {
                exists = $TITLE$
                $TITLE$.tier = tier_duchy
                $TITLE$.holder ?= {
                        any_held_title = {
                            tier = tier_kingdom
                            is_de_jure_liege_or_above_target = $TITLE$
                        }
                    }
                }
            custom_tooltip = {
                text = promote_candidate_interaction_how_by_dejure_liege_tt
                $TITLE$ = {
                  
                    NOT = { $TITLE$.holder.highest_held_title_tier > tier_duchy }                  
                }
            }
        }
        trigger_if = {
            limit = {
                exists = $TITLE$
                $TITLE$.tier = tier_duchy
                $TITLE$.holder ?= {
                        any_held_title = {
                            tier = tier_empire
                            is_de_jure_liege_or_above_target = $TITLE$
                        }
                    }
                }
            custom_tooltip = {
                text = promote_candidate_interaction_how_by_dejure_liege_tt
                $TITLE$ = {                  
                    NOT = { $TITLE$.holder.highest_held_title_tier > tier_kingdom }                  
                }
            }
        }
        trigger_if = {
            limit = {
                exists = $TITLE$
                $TITLE$.tier = tier_kingdom
                $TITLE$.holder ?= {
                        any_held_title = {
                            tier = tier_empire
                            is_de_jure_liege_or_above_target = $TITLE$
                        }
                    }
                }
            custom_tooltip = {
                text = promote_candidate_interaction_how_by_dejure_liege_tt
                $TITLE$ = {                  
                    NOT = { $TITLE$.holder.highest_held_title_tier > tier_kingdom }                  
                }
            }
        }
}

So now titles held by the dejure liege of those titles won't be selectionnable
 
Last edited:
  • 3Like
Reactions: