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

Haglee

Hungarian General
124 Badges
Sep 23, 2006
83
7
  • Rome Gold
  • Hearts of Iron III Collection
  • Heir to the Throne
  • Impire
  • Europa Universalis III Complete
  • Iron Cross
  • King Arthur II
  • Knights of Pen and Paper +1 Edition
  • The Kings Crusade
  • Magicka
  • Majesty 2 Collection
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Hearts of Iron III: Their Finest Hour
  • Semper Fi
  • Sengoku
  • Ship Simulator Extremes
  • Sword of the Stars
  • Teleglitch: Die More Edition
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Rome: Vae Victis
  • War of the Roses
  • 500k Club
  • Hearts of Iron 4: Arms Against Tyranny
  • Darkest Hour
  • Hearts of Iron II: Armageddon
  • Cities in Motion
  • Cities in Motion 2
  • Crusader Kings II
  • 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
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Arsenal of Democracy
  • Deus Vult
  • Europa Universalis III
  • Divine Wind
  • 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
  • For The Glory
  • For the Motherland
Pope suggests me to attack myself to return Alexandria.. lol.. :)

war_www.kepfeltoltes.hu_.png
 
I take it you have the DVIP mod installed? I too am getting that particular event when I captured Byznatium. I'm too chicken to actually declare war on myself, so I've been choosing the Skeptical option. Does anything bad happen if you do declare war on yourself?
 
No, thank God. But before having chosen my answer i have saved the game, so no problem could happen. :)

Hm.. no "end of crusade" event, it's 1103.. :(
 
Silly error in that event :D
Unfortunately a little hard to fix, since crusade_target_owner is only valid as a war target... I'll see if I can think of something.

Ah, got it... needs an addition to the trigger to check all the crusade targets.

BOP_hist_events.txt #19440 add to trigger:
Code:
		condition = {
			type = or
			condition = {
				type = and
				condition = { type = target value = 774 }
				condition = { type = province 
					province = 774
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 764 }
				condition = { type = province 
					province = 764
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 802 }
				condition = { type = province 
					province = 802 
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 817 }
				condition = { type = province 
					province = 817
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 496 }
				condition = { type = province 
					province = 496
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 333 }
				condition = { type = province 
					province = 333
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 340 }
				condition = { type = province 
					province = 340 
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 181 }
				condition = { type = province 
					province = 181
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
			condition = {
				type = and
				condition = { type = target value = 199 }
				condition = { type = province 
					province = 199
					condition = {
						type = and
						condition = { type = not value = { type = ruler_religion value = catholic }}
						condition = { type = not value = { type = ruler_religion value = orthodox }}
					}
				}
			}
		}