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

Rioghal

Corporal
55 Badges
Apr 28, 2012
29
0
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Mare Nostrum
  • Stellaris: Galaxy Edition
  • Tyranny - Tales from the Tiers
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Pre-order
  • Sengoku
  • Europa Universalis IV: Res Publica
  • Magicka
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Crusader Kings II
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Monks and Mystics
  • BATTLETECH: Heavy Metal
  • Stellaris - Path to Destruction bundle
  • BATTLETECH
  • Tyranny - Bastards Wound
  • Crusader Kings II: Jade Dragon
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • BATTLETECH - Digital Deluxe Edition
  • Stellaris: Distant Stars
  • Shadowrun Returns
  • Shadowrun: Dragonfall
  • Shadowrun: Hong Kong
  • BATTLETECH: Flashpoint
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Tyranny: Archon Edition
  • Tyranny: Archon Edition
  • Crusader Kings II: Reapers Due
  • Stellaris: Galaxy Edition
  • Stellaris
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Pillars of Eternity
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • 500k Club
So I have a question about elective succession in the mod. I remember it used to work much the same as it does in vanilla with lords of one lower level being able to vote on elections above them up until the emperor level where dukes and kings could all vote on the imperial succession. Now however, I notice that my councilors (entirely courtiers and baron level) are all voting in my king level succession. I have no ducal vassals so in vanilla I would be the only elector. It's not really a problem but I'm curious if this is the intended behavior.
 

Attachments

  • 20190119145552_1.jpg
    20190119145552_1.jpg
    437,9 KB · Views: 49
Looks like the tooltip needs updating for the standard feudal elective, but this seems to be a deliberate change

Code:
OR = {
                higher_real_tier_than = BARON #All count tier and above
                AND = { #Barons in duke tier realms
                    tier = BARON
                    FROMFROM = { lower_real_tier_than = KING }
                }
                AND = { #Holder's council
                    FROMFROM = { holder_scope = { is_liege_of = PREVPREV } }
                    OR = {
                        is_councillor = yes
                        is_voter = yes
                    }
                }
                FROMFROM = { holder_scope = { is_close_relative = PREVPREV } } #Holder's relatives
                any_claim = { title = FROMFROM } #Claimants
            }

Wonder when they decided to update this. Time to dive through the change logs I guess.
Would have been this version, elective wasn't moddable previously
 
Looks like the tooltip needs updating for the standard feudal elective, but this seems to be a deliberate change

Code:
OR = {
                higher_real_tier_than = BARON #All count tier and above
                AND = { #Barons in duke tier realms
                    tier = BARON
                    FROMFROM = { lower_real_tier_than = KING }
                }
                AND = { #Holder's council
                    FROMFROM = { holder_scope = { is_liege_of = PREVPREV } }
                    OR = {
                        is_councillor = yes
                        is_voter = yes
                    }
                }
                FROMFROM = { holder_scope = { is_close_relative = PREVPREV } } #Holder's relatives
                any_claim = { title = FROMFROM } #Claimants
            }


Would have been this version, elective wasn't moddable previously
Interesting! Thanks for the info. Looks like it might be pretty easy to revert to its original structure.