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

Stratagyfan101

Lt. General
16 Badges
Jun 16, 2009
1.287
1.365
  • Crusader Kings II
  • Deus Vult
  • Europa Universalis III Complete
  • Divine Wind
  • For the Motherland
  • Hearts of Iron III
  • Heir to the Throne
  • Rome Gold
  • Semper Fi
  • Victoria 2: A House Divided
  • Europa Universalis IV
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Victoria 2
  • 500k Club
  • Europa Universalis IV: Pre-order
I didnt notice this until recently but every time I get the "Heathens are Splintered, white Peace is possible" event fires and I accept white peace.

Now as I understand it, all vassels are supposed to make peace when I do, but for some reason when I use this event the vassels do not make peace.
 

jordarkelf

01_TITLE_STRING
164 Badges
Jul 13, 2005
8.040
647
erbkaiser.nl
  • Impire
  • 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
  • Galactic Assault
  • Gettysburg
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Heir to the Throne
  • Divine Wind
  • Europa Universalis III Complete
  • Iron Cross
  • King Arthur II
  • Knights of Pen and Paper +1 Edition
  • Lead and Gold
  • Legio
  • Leviathan: Warships
  • The Kings Crusade
  • Lost Empire - Immortals
  • Magicka
  • Majesty 2
  • Victoria 3 Sign Up
  • Crusader Kings II: Sons of Abraham
  • Ancient Space
  • Hearts of Iron Anthology
  • Arsenal of Democracy
  • 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
  • A Game of Dwarves
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Commander: Conquest of the Americas
  • Darkest Hour
  • Deus Vult
  • Diplomacy
  • Dungeonland
  • East India Company
  • East India Company Collection
  • Europa Universalis III
I am using an extra event that will force white peace on vassals if their overlords are at peace, that is about the best we can do.

Also added the second event below that takes care of vassals warring with their liege. Both are in DVIP, DVIP_bugfixes.txt.
Code:
character_event = { # Bugfix - Peace for AI vassals if liege is at peace
	id = 23254
	picture = "event_chancellor"
	trigger = {
		condition = { type = ai }
		condition = { type = ruler }
		condition = { type = is_vassal }
		condition = { type = atwar }
		condition = { type = not value = { type = liege condition = { type = atwar } } }
	}
	mean_time_to_happen = { months = 1 }
	action_a = { #
		effect = { type = peace }
	}
}
character_event = { # Bugfix - Release AI vassals at war with liege
	id = 23255
	picture = "event_chancellor"
	trigger = {
		condition = { type = ai }
		condition = { type = ruler }
		condition = { type = is_vassal }
		condition = { type = atwar }
		condition = { type = liege
			condition = { type = atwar }
			condition = { type = any_enemy
				condition = { type = is_receiver }
			}
		}
	}
	mean_time_to_happen = { months = 1 }
	action_a = {
		effect = { type = independence }
		effect = { type = loyalty value = 1.0 }
		effect = { type = remove_trait for = this value = loyalist }
		effect = { type = remove_trait for = this value = rebellious }
	}
}
 
Last edited: