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

papapyro

Captain
33 Badges
Jul 11, 2017
353
697
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Third Rome
  • Hearts of Iron IV: Death or Dishonor
  • Age of Wonders III
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Golden Century
  • Imperator: Rome
  • Europa Universalis IV: Mare Nostrum
  • Crusader Kings III
  • Battle for Bosporus
  • Europa Universalis 4: Emperor
  • Victoria 3 Sign Up
  • Hearts of Iron IV: By Blood Alone
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron 4: Arms Against Tyranny
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Crusader Kings II
  • Heir to the Throne
  • Divine Wind
  • Europa Universalis III: Chronicles
  • Europa Universalis III
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: The Old Gods
I was pretty confused in the Paul Subic Monarch Journey as despite there being 3 landed Subics, (you, your brother in Zara, and a kinsman in Split), it only says 2 in the challenge screen. I thought initially that maybe they had to be your vassals, so I attacked Venice and became my brother in Zara's liege, but no, it still only says 2. What's going on here? Do City government type rulers not count? Do you yourself not count?

So I checked the code for this to try get my head around it
Code:
established = {
    icon = GFX_dream_home_34
    levels = { 4 6 8 }
    update = {
        set_variable = { which = global_established value = 0 }
        c_470001 = { # Paul
            if = {
                limit = { is_alive = yes }
                any_dynasty_member = {
                    if = {
                        limit = {
                            is_landed = yes
                        }
                        change_variable = { which = global_established value = 1 }
                    }
                }
            }
        }
    }
}

NOTE: I tidied this up a bit for the forum, in the file it's really hard to read because instead of new lines it's just /n

Looking at this, it seems that the only requirement is for them to be landed. Does any_dynasty_member not include the character? If so that's pretty dumb