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

Rakonas

Major
32 Badges
Apr 25, 2006
594
7
  • Majesty 2
  • Mount & Blade: With Fire and Sword
  • Mount & Blade: Warband
  • Europa Universalis IV: Pre-order
  • 500k Club
  • Rome: Vae Victis
  • Victoria 2: A House Divided
  • Victoria 2
  • Supreme Ruler 2020
  • Sword of the Stars II
  • Sword of the Stars
  • Sengoku
  • Semper Fi
  • Europa Universalis: Rome
  • Victoria: Revolutions
  • Europa Universalis III Complete
  • Arsenal of Democracy
  • Magicka
  • Europa Universalis III Complete
  • Heir to the Throne
  • Hearts of Iron III
  • For the Motherland
  • For The Glory
  • Europa Universalis IV
  • Divine Wind
  • Europa Universalis III
  • East India Company
  • Diplomacy
  • Deus Vult
  • Darkest Hour
  • Crusader Kings II
  • Hearts of Iron II: Armageddon
I'm getting a crash on loading event files no matter what I do with this code, does anyone more experienced see anything that could be the cause?
Code:
#Elvish inherited
character_event = {
	id = 6111111
	desc = "EVTDESC6000"
	picture = "GFX_evt_illness"
	
	min_age = 0
	capable_only = yes
	
	trigger = {
		NOT = {
			trait = elf
		}
		AND = {
			father = { 
				trait = elf
			}
			mother = {
				trait = elf
			}
		}
	}
	
	mean_time_to_happen = {
		days = 1
	}
	
	option = {
		name = "EVTOPTA6000"
		add_trait = elf
		remove_trait = halfelf
	}
}

character_event = {
	id = 6222222
	desc = "EVTDESC6000"
	picture = "GFX_evt_illness

	min_age = 0
	capable only = yes

	trigger = {
		NOT = {
			trait = elf
			trait = halfelf
		}
		OR = {
			father = { 
				trait = elf
			}
			mother = {
				trait = elf
			}
		}
	}
	
	mean_time_to_happen = {
		days = 1
	}
	
	option = {
		name = "EVTOPTA6000"
		add_trait = halfelf
	}
}

character_event = {
	id = 6333333
	desc = "EVTDESC6000"
	picture = "GFX_evt_illness

	min_age = 0
	capable only = yes

	trigger = {
		NOT = {
			trait = elf
			trait = halfelf
		}
		AND = {
			father = {
				trait = elf
			}
			mother = {
				trait = halfelf
			}
		}
	}

	mean_time_to_happen = {
		days = 1
	}
	
	option = {
		name = "EVTOPTA6000"
		add_trait = elf
	}
}

character_event = {
	id = 6444444
	desc = "EVTDESC6000"
	picture = "GFX_evt_illness

	min_age = 0
	capable only = yes

	trigger = {
		NOT = {
			trait = elf
			trait = halfelf
		}
		AND = {
			father = {
				trait = halfelf
			}
			mother = {
				trait = elf
			}
		}
	}

	mean_time_to_happen = {
		days = 1
	}
	
	option = {
		name = "EVTOPTA6000"
		add_trait = elf
	}
}

character_event = {
	id = 6555555
	desc = "EVTDESC6000"
	picture = "GFX_evt_illness

	min_age = 0
	capable only = yes

	trigger = {
		NOT = {
			trait = elf
			trait = halfelf
		}
		AND = {
			father = {
				trait = halfelf
			}
			mother = {
				trait = halfelf
			}
		}
	}

	mean_time_to_happen = {
		days = 1
	}
	
	option = {
		name = "EVTOPTA6000"
		add_trait = halfelf
	}
}
 
I browsed through it but nothing stood out. Have you tried adding one event at a time? Try to narrow it down a bit.