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

3inar

Major
44 Badges
Apr 30, 2010
507
7
  • Crusader Kings II: Charlemagne
  • Stellaris
  • Europa Universalis IV: Mare Nostrum
  • Cities: Skylines - Snowfall
  • Europa Universalis IV: Cossacks
  • Cities: Skylines - After Dark
  • Stellaris - Path to Destruction bundle
  • Europa Universalis IV: Pre-order
  • Crusader Kings II
  • Europa Universalis IV: Res Publica
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Art of War
  • Europa Universalis IV
  • Europa Universalis III: Chronicles
  • Deus Vult
  • Europa Universalis IV: Conquest of Paradise
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Hearts of Iron IV: Cadet
  • Crusader Kings III: Royal Edition
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Together for Victory
  • Steel Division: Normandy 44
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings II: Holy Fury
  • Hearts of Iron IV: Expansion Pass
  • Crusader Kings III
  • Hearts of Iron IV Sign-up
  • Crusader Kings II: Conclave
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Mount & Blade: Warband
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Holy Knight (pre-order)
  • 500k Club
  • Victoria 2
  • Cities: Skylines
Ok so as the title say, if I start a game at the year 1066 and I realy whant a character that is born at a date in the year 1125 to apear as a newborn in someones court at that date despite having played the game from the year 1066?

And is it possible to force characters to only have pre sett children and no other children will be born by that character?

Mabe its even possible to force a rebellion with a character apearing as the leeader of the rebellion and then if succesfully capture the county in witch the rebellion apear the pre sett character of the rebellion wold be the new ruler of that title?



Thanks in advance!
 
You might be able to do something with the hedgeknight.txt create_character code.

create_character creates the actual character.
new_character is an effect scope to modify that new character.

Code:
create_character = {
	random_traits = yes
	dynasty = random
	fertility = 0.6
	female = no
	age = 24
}
new_character = {
	impregnate = PREV # removing this is suggested to avoid any awkward situations at court.
	add_lover = PREV
	add_trait = lustful
}
 
You might be able to do something with the hedgeknight.txt create_character code.

create_character creates the actual character.
new_character is an effect scope to modify that new character.

Code:
create_character = {
	random_traits = yes
	dynasty = random
	fertility = 0.6
	female = no
	age = 24
}
new_character = {
	impregnate = PREV # removing this is suggested to avoid any awkward situations at court.
	add_lover = PREV
	add_trait = lustful
}

In the Mongol event file the Timurid arrival event creates Timor and gives him a pile of troops and followers. You could try copying that event without the troops and followers bits.