• 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
20 Badges
Jul 11, 2017
353
697
  • Age of Wonders III
  • Hearts of Iron 4: Arms Against Tyranny
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: By Blood Alone
  • Victoria 3 Sign Up
  • Battle for Bosporus
  • Crusader Kings III
  • Hearts of Iron IV: Expansion Pass
  • Imperator: Rome
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Cadet
  • 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