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

Dimo87

Second Lieutenant
37 Badges
Feb 17, 2022
131
404
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Hearts of Iron IV: Death or Dishonor
  • Europa Universalis IV: Cradle of Civilization
  • Hearts of Iron IV: Expansion Pass
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis IV: Dharma
  • Europa Universalis IV: Golden Century
  • Imperator: Rome
  • Europa Universalis IV: Rights of Man
  • Hearts of Iron IV: La Resistance
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Battle for Bosporus
  • Europa Universalis 4: Emperor
  • Hearts of Iron IV: By Blood Alone
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron 4: Arms Against Tyranny
  • Victoria 2: A House Divided
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Victoria 2
  • Crusader Kings II
  • Victoria 2: Heart of Darkness
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Hearts of Iron IV Sign-up
  • Hearts of Iron IV: Cadet
Short summary of your issue
Can't make "Promote Christian Settlers" major decision

Game Version
1.5.0.1 (Fleur-de-lis)

What OS are you playing on?
Windows

What platform are you using?
Paradox Launcher

What DLC do you have installed?
Royal Court,

Do you have mods enabled?
No

Have you tried verifying your game files (Steam only)?
(DID NOT ANSWER QUESTION)

How much "pain" is this causing you?
6

Please explain the issue you experienced in the most condensed way possible
Starting as Grand Prince Almos Ugyekfi (Arpad) from The Great Adventurers in 867, I complete the Hungarian Migration and then acquire the land to make the "Promote Christian Settlers" major decision, but it says "you do not fulfill all the requirements" even though I do and it shows all the requirements are checked off. I've tried two totally different runs and had the same issue both times.

Please explain how to reproduce the issue
Start as Grand Prince Almos Ugyekfi and complete the Hungarian Migration. Then acquire the rest of de jure Hungary from Balaton, Great Moravia, and Ungvar. Then try to do the "Promote Chrisitian Settlers" with 2,000 prestige and 500 piety.

Is there anything else you think could help us identify/replicate the issue?
Not sure, but I can tell you what I tried. Exiting the game and going back in. Losing my kingdom title and then winning it back. Dying and letting my heir try the major decision. Nothing worked.

I have attached a save game
Yes

Upload Attachment
File(s) attached
 

Attachments

  • Promote Christian Settlements.jpg
    Promote Christian Settlements.jpg
    686,7 KB · Views: 0
  • arpad_867_ironman NEW.ck3
    6,2 MB · Views: 0
This is the problem of all decisions.
I had the same thing with the witch's coven
Or worst of all, when I met all the requirements for the formation of the Roman Empire, and the decision is not available
This is also not fixed in version 1.5.0.2
 
@Dimo87 In case it's not a bug here are what I found in the game files

Code:
promote_hungarian_settlement_decision = {
    picture = "gfx/interface/illustrations/decisions/decision_realm.dds"

    desc = promote_hungarian_settlement_decision_desc
    selection_tooltip = promote_hungarian_settlement_decision_tooltip
    major = yes
    ai_goal = yes

    is_shown = {
        is_ruler = yes
        is_landed = yes
        game_start_date < 1066.1.1
        culture = { has_cultural_pillar = heritage_magyar }
        NOT = {  #Can only do it once.
            is_target_in_global_variable_list = {
                name = unavailable_unique_decisions
                target = flag:flag_promoted_hungarian_settlement
            }
        }
        NOT = {  #Can only do either or.
            is_target_in_global_variable_list = {
                name = unavailable_unique_decisions
                target = flag:flag_revived_magyar_paganism
            }
        }
        OR = {
            has_title = title:k_hungary
            has_title = title:e_carpathia
        }
        any_neighboring_top_liege_realm_owner = { #There are same reli neighboring Realms/Empires to take people from.
            religion = religion:christianity_religion
            count >= 2
        }
    }
    
    is_valid = {
        # Must be an Ecumenical Christian
        custom_description = {
              text = promote_hungarian_settlement_decision_ecumenical_christian
            faith = { #Denomination of Faith must not be a heresy and must have some degree of control over its core regions.
                religion = religion:christianity_religion
                has_doctrine = special_doctrine_ecumenical_christian   
            }
        }
        
        #Must completely control the Carpathian Basin (Hungary De Jure)
        completely_controls = title:k_hungary

        # Capital is Hungarian culture group
        capital_province = { culture = { has_cultural_pillar = heritage_magyar } }
    }

    is_valid_showing_failures_only = {
        is_capable_adult = yes
        is_imprisoned = no
        is_independent_ruler = yes
        is_at_war = no
    }

    cost = {
        prestige = 2000
        piety = 500
    }

    effect = {
        show_as_tooltip = {
            promote_hungarian_settlement_decision_scripted_effect = yes
        }
        trigger_event = {
            id = east_europe.0030
        }
        hidden_effect = {
            add_to_global_variable_list = {
                name = unavailable_unique_decisions
                target = flag:flag_promoted_hungarian_settlement
            }
        }
    }
    
    ai_potential = {
        always = yes
    }

    ai_will_do = {
        base = 50
        ai_value_modifier = {
            ai_zeal = 1.0
            ai_greed = 1.0
        }
    }
}

Not sure how to read that exactly but make sure your capital province is of "magyar" based culture, neighbour with catholic religion, etc.
 
@Earl Obelus of Brittany
So I tried again after the patch even though I didn't see it in the bug fixes. Same thing happened, but then I figured I'd try actually converting to Catholicism and the decision immediately became available. I'm not sure if that's an intended requirement, but if so I'd add it to the requirements since the description makes it sound more like you have a chance of converting only AFTER you take the decision.