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

thetazerlaser

Private
67 Badges
Dec 24, 2015
17
0
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Cities: Skylines - After Dark
  • Stellaris
  • Cities: Skylines - Parklife
  • Hearts of Iron IV Sign-up
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Together for Victory
  • Crusader Kings II: Monks and Mystics
  • Stellaris - Path to Destruction bundle
  • Cities: Skylines - Mass Transit
  • Europa Universalis IV: Mandate of Heaven
  • Crusader Kings II: Holy Fury
  • Hearts of Iron IV: Death or Dishonor
  • Stellaris: Synthetic Dawn
  • Cities: Skylines - Green Cities
  • Europa Universalis IV: Cradle of Civilization
  • Imperator: Rome Deluxe Edition
  • Hearts of Iron IV: Expansion Pass
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis IV: Rule Britannia
  • Europa Universalis 4: Emperor
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Dharma
  • Imperator: Rome - Magna Graecia
  • Stellaris: Federations
  • Hearts of Iron IV: La Resistance
  • Stellaris: Ancient Relics
  • Cities: Skylines - Campus
  • Hearts of Iron IV: Expansion Pass
  • Imperator: Rome
  • Europa Universalis IV
  • Stellaris: Nemesis
  • Europa Universalis IV: Wealth of Nations
  • Victoria 2
  • Cities: Skylines
  • Stellaris: Megacorp
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Golden Century
  • Stellaris: Distant Stars
One line summary of your issue
[3.0] No option to form Holy Roman Empire

Game Version
3.0

What expansions do you have installed?
Jade Dragon,
Monks & Mystics,
The Reapers Due,
Conclave,
Horse Lords,
Way of Life,
Charlemagne,
Rajas of India,
Sons of Abraham,
The Old Gods,
The Republic,
Legacy of Rome,
Sword of Islam

Do you have mods enabled?
No

Please explain your issue is in as much detail as possible.
Charlemagne and Carloman lack the decision to form the Holy Roman Empire

Steps to reproduce the issue.


Upload Attachment
 

Attachments

  • screenshot.png
    screenshot.png
    4,4 MB · Views: 38
Upvote 0

nikssims

Lt. General
10 Badges
Dec 4, 2010
1.491
89
  • Crusader Kings II
  • Darkest Hour
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • 500k Club
Any quick fix for this to edit in the files? I too have the same problem. No decision to form the HRE.
Playing with custom dynasty, no mods.
 

michx0

First Lieutenant
75 Badges
Feb 16, 2015
269
25
  • Hearts of Iron III Collection
  • Stellaris: Galaxy Edition
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Third Rome
  • Crusader Kings II: Jade Dragon
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Victoria 2
  • Semper Fi
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Magicka
  • Leviathan: Warships
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III
  • For the Motherland
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Europa Universalis IV: Call to arms event
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Dungeonland
  • Europa Universalis III
  • Crusader Kings II
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Stellaris - Path to Destruction bundle
  • Crusader Kings II: Monks and Mystics
  • Stellaris: Leviathans Story Pack
  • Tyranny: Archon Edition
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Reapers Due
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris: Galaxy Edition
  • Stellaris
  • Crusader Kings II: Conclave
  • Stellaris: Nemesis
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • War of the Roses
  • Warlock: Master of the Arcane
  • The Showdown Effect
Any quick fix for this to edit in the files? I too have the same problem. No decision to form the HRE.
Playing with custom dynasty, no mods.

If you know how to create mods, it is easy. Find decisions->realm decisions.txt. Then find
form_the_hre_early = {
...
conditional_tooltip = {
trigger = {
is_alternate_start = no
}
NOT = { has_global_flag = charlemagne_hre }
e_hre = {
is_titular = yes
}
}

and change it to

conditional_tooltip = {
trigger = {
is_alternate_start = no
}
NOT = { has_global_flag = charlemagne_hre }
# e_hre = {
# is_titular = yes
# }
}

But, again, I don't know why this condition is there, use it at your own risk.
 

nikssims

Lt. General
10 Badges
Dec 4, 2010
1.491
89
  • Crusader Kings II
  • Darkest Hour
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • 500k Club
If you know how to create mods, it is easy. Find decisions->realm decisions.txt. Then find
form_the_hre_early = {
...
conditional_tooltip = {
trigger = {
is_alternate_start = no
}
NOT = { has_global_flag = charlemagne_hre }
e_hre = {
is_titular = yes
}
}

and change it to

conditional_tooltip = {
trigger = {
is_alternate_start = no
}
NOT = { has_global_flag = charlemagne_hre }
# e_hre = {
# is_titular = yes
# }
}

But, again, I don't know why this condition is there, use it at your own risk.
Thanks! I tried it on my old save where I did not have the decision to form HRE and it looks like it is fixed. However I was too impatient yesterday and I added a the "charlemagne_hre" global flag to my savegame and I also got the decision to form HRE. I am not sure what that flag does, but I managed to form HRE just fine.
 

[KPD]Fidel

Second Lieutenant
28 Badges
Mar 24, 2008
175
36
  • Deus Vult
  • Pillars of Eternity
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Heir to the Throne
  • Europa Universalis III
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: The Republic
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II
  • Crusader Kings II: Jade Dragon
  • Crusader Kings III
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Holy Fury
  • Imperator: Rome
  • Crusader Kings II: Reapers Due
  • Stellaris
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Way of Life
  • Mount & Blade: Warband
  • 500k Club
  • Europa Universalis IV
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Charlemagne
I am not sure. I only edited my savegame and added a global flag called "charlemagne_hre". After that decision to form HRE appeared in my game.

I'm talking about your change. Their seems to be no change as you already have a global flag called "charlemagne_hre" in the lines you quote. So I was asking what exactly you changed.

Btw. I agree with your question about not sure what it changes. It would help mightly if a Paradox Admin could tell us if this is a viable change or if we destroy something with it.
 

nikssims

Lt. General
10 Badges
Dec 4, 2010
1.491
89
  • Crusader Kings II
  • Darkest Hour
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • 500k Club
I did not edit any lines, I only edited my savegame file. I added the HRE global flag to my savegame, not added it removed it from the realm_decisions.txt file.
 

[KPD]Fidel

Second Lieutenant
28 Badges
Mar 24, 2008
175
36
  • Deus Vult
  • Pillars of Eternity
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Heir to the Throne
  • Europa Universalis III
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: The Republic
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II
  • Crusader Kings II: Jade Dragon
  • Crusader Kings III
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Holy Fury
  • Imperator: Rome
  • Crusader Kings II: Reapers Due
  • Stellaris
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Way of Life
  • Mount & Blade: Warband
  • 500k Club
  • Europa Universalis IV
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Charlemagne
I did not edit any lines, I only edited my savegame file. I added the HRE global flag to my savegame, not added it removed it from the realm_decisions.txt file.

You said to mod the realm decision file but the text you posted is basically exactly the same. So how exactly am I supposed to edit it?
 

nikssims

Lt. General
10 Badges
Dec 4, 2010
1.491
89
  • Crusader Kings II
  • Darkest Hour
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Europa Universalis III Complete
  • Divine Wind
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • 500k Club
You said to mod the realm decision file but the text you posted is basically exactly the same. So how exactly am I supposed to edit it?
What text have I posted? Where did I say that I modded a realm decision file? I am sorry but I have absolutely no idea what are you talking about now. Just as I said earlier today, I did not edit any lines, I only edited my savegame file. I added the HRE global flag to my savegame, not added it removed it from the realm_decisions.txt file.
You might be confusing me with user michx0 who posted instructions on how to edit the decisions file and fix the issue.