• 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.
Mar 11, 2004
603
0
So I tried to add the Knights of Santiago. Add the relevant events to templar_events.txt., define the it in country.csv and world_names.csv was easy enough. They trigger just fine, just like all the other orders.

However, they default to a pagan tribe (i. e., with chieftain), and have a Nameless One as ruler :wacko:.

I just can't find out how to define that :eek:o ! Is it perhaps hardcoded?

Oh, and BTW, how historically correct is this mod :confused: ;) ?
 

pimparel

Wargamer Fanatic
46 Badges
Feb 12, 2003
1.934
13
  • Stellaris: Apocalypse
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Mare Nostrum
  • Stellaris
  • Hearts of Iron IV: Cadet
  • Europa Universalis IV: Rights of Man
  • Stellaris: Leviathans Story Pack
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Mandate of Heaven
  • Europa Universalis IV: Third Rome
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Cradle of Civilization
  • Europa Universalis IV: Cossacks
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Distant Stars
  • Europa Universalis IV: Dharma
  • Shadowrun Returns
  • Shadowrun: Dragonfall
  • Shadowrun: Hong Kong
  • Stellaris: Megacorp
  • Europa Universalis IV: Golden Century
  • Prison Architect
  • Europa Universalis 4: Emperor
  • Europa Universalis IV: Conquest of Paradise
  • 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
  • Europa Universalis IV: Art of War
  • Crusader Kings II
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV: Res Publica
  • Europa Universalis: Rome
  • 500k Club
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Horse Lords
Mar 11, 2004
603
0
Cool :).
Though it seems you didn't find an answer to my problem either... seems it really is hardcoded then :( . Hopefully, 1.04 will bring an event effect to change form of government...

Though I must say I like my CoA for them better, even though it's probably less correct (just had a quick look at FotW ;):
U000.bmp


Edit: Yes, country.csv has the definition, but what I'm looking for is form of government (i.e., feudal, republic or in this case, knight_order). I used the U000 tag, of course.
 
Mar 11, 2004
603
0
Okay. Can anyone explain why this event triggers in the 1187 scenario for Kingdom of Jerusalem? (The province id are correct, and besides, I added the provision that the ruler must have lands in spain...):
Code:
#############################
# Grant Land to the Knights of Santiago#
#############################
province_event = {
	id = 910

	picture = "event_templars"
	name = "Die Ritter von Santiago"
	trigger = {
		condition = {
			type = owner
				condition = { type = region value = spain }
			}
		condition = {
			type = or
			condition = { type = province value = 195 } #Caceres
			condition = { type = province value = 177 } #Cuenca
			condition = { type = province value = 156 } #Compostella
			condition = { type = province value = 157 } #Santiago
			}
		condition = { type = crusade }
		condition = { type = ruler_religion value = catholic }
		condition = {
			type = not
			value = {
				type = exists value = U000
			}
		}
	}

	mean_time_to_happen = {
		months = 6
	}

	action_a = {
		effect = { type = create_tag value = U000 } 
		effect = { type = ruler_piety value = 25 } #note: also allows troops event
	}
	action_b = {
		effect = { type = ruler_piety value = -50 }
	}
}