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

Johan11

Deadpan Snarker
51 Badges
Dec 24, 2008
1.931
0
  • Hearts of Iron III
  • Heir to the Throne
  • Crusader Kings II
  • Europa Universalis IV
  • Divine Wind
  • Europa Universalis III Complete
  • Deus Vult
  • Stellaris - Path to Destruction bundle
  • Crusader Kings II: Jade Dragon
  • Stellaris: Synthetic Dawn
  • Stellaris: Distant Stars
  • Crusader Kings II: Monks and Mystics
  • Stellaris: Leviathans Story Pack
  • Stellaris: Digital Anniversary Edition
  • Crusader Kings II: Reapers Due
  • Stellaris
  • Crusader Kings II: Conclave
  • Stellaris: Humanoids Species Pack
  • Stellaris: Apocalypse
  • Europa Universalis III: Collection
  • Stellaris: Megacorp
  • Crusader Kings II: Holy Fury
  • Stellaris: Ancient Relics
  • Stellaris: Lithoids
  • Stellaris: Federations
  • Crusader Kings III
  • Crusader Kings III: Royal Edition
  • Stellaris: Necroids
  • Stellaris: Nemesis
  • Europa Universalis IV: Wealth of Nations
  • 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
  • Europa Universalis III
  • Europa Universalis IV: Conquest of Paradise
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Call to arms event
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • 500k Club
  • Cities: Skylines
  • Cities: Skylines Deluxe Edition
  • Europa Universalis IV: El Dorado
  • Europa Universalis IV: Pre-order
Hi!

As the title says, I want to change the culture ofa group of provinces (Namely, I want to make all Armenian provinces Georgian, and change the province of Dyrrachion from greek to armenian. How do I do this?
 
Hi!

As the title says, I want to change the culture ofa group of provinces (Namely, I want to make all Armenian provinces Georgian, and change the province of Dyrrachion from greek to armenian. How do I do this?

Find the province ID's in Crusader Kings/config/province_names.csv

Then o to Crusader Kings/scenarios/1066_scenario_provinces.inc and then search for the provinces and change the entries, like this

Code:
province = { 
	id = 671 
	[COLOR="lime"]culture = armenian [/COLOR]
	religion = orthodox 
	privileges = { 
		peasants = 1 
		burghers = 1 
		clergy = 1 
		nobles = 1 
	}
	loyalty = { 
		peasants = 1 
		burghers = 1 
		clergy = 1 
		nobles = 1 
	}
	improvements = {
		hill_fort = yes 
	}
	advances = {
		shortbow = yes 
		soft_leather = yes 
		chained_leather = yes 
		shortsword = yes 
		longspear = yes 
		hill_fort = yes 
		aristotelian_logics = yes
	}
}

Code:
province = { 
	id = 671 
	[COLOR="lime"]culture = georgian[/COLOR]
	religion = orthodox 
	privileges = { 
		peasants = 1 
		burghers = 1 
		clergy = 1 
		nobles = 1 
	}
	loyalty = { 
		peasants = 1 
		burghers = 1 
		clergy = 1 
		nobles = 1 
	}
	improvements = {
		hill_fort = yes 
	}
	advances = {
		shortbow = yes 
		soft_leather = yes 
		chained_leather = yes 
		shortsword = yes 
		longspear = yes 
		hill_fort = yes 
		aristotelian_logics = yes
	}
}
 
Thank you. Greatly appreciated.