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

Me_

Myself
82 Badges
Jan 14, 2011
9.625
12.309
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Jade Dragon
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: Third Rome
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Sengoku
  • Semper Fi
  • Europa Universalis: Rome
  • Europa Universalis IV: Res Publica
  • Hearts of Iron III Collection
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III
  • For the Motherland
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: The Old Gods
  • Crusader Kings II
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sword of Islam
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Hearts of Iron IV: Cadet
  • Stellaris: Galaxy Edition
  • Stellaris Sign-up
  • Hearts of Iron IV Sign-up
  • Stellaris - Path to Destruction bundle
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Together for Victory
  • Crusader Kings II: Monks and Mystics
  • Stellaris: Galaxy Edition
  • Stellaris
  • Hearts of Iron IV: No Step Back
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • 500k Club
  • Warlock: Master of the Arcane
  • Victoria 2
This is a small event that can happen for the Byzantine Emperor, but for whatever reason once the empire is restored to its glory, the game of tzykanion apparently gets banned

from byzantine_events:
Code:
### Tzykanion

# AI Challenges
character_event = {
	id = LoR.900
	hide_window = yes
	
	ai = yes
	min_age = 16
	max_age = 50
	capable_only = yes
	prisoner = no
	
	trigger = {
		primary_title = { higher_tier_than = COUNT }
		is_feudal = yes
		OR = {
			liege = {
				has_dlc = "Legacy of Rome"
				has_landed_title = e_byzantium
				NOT = { has_character_flag = no_more_tzykanion }
				ai = no
				culture = greek
				is_female = no
				prisoner = no
				age = 16
				NOT = { age = 50 }
				NOT = { trait = infirm }
				NOT = { trait = incapable }
				NOT = { trait = in_hiding }
			}
			liege = {
				has_landed_title = e_byzantium
				any_realm_lord = {
					ai = no
					has_dlc = "Legacy of Rome"
					NOT = { has_character_flag = no_more_tzykanion }
					same_liege = ROOT
					culture = greek
					is_female = no
					prisoner = no
					age = 16
					NOT = { age = 50 }
					NOT = { trait = infirm }
					NOT = { trait = incapable }
					NOT = { trait = in_hiding }
				}
			}
		}
		culture = greek
		is_female = no
	}
	
	mean_time_to_happen = {
		months = 1800
	}
	
	immediate = {
		if = {
			limit = {
				liege = {
					has_landed_title = e_byzantium
					ai = no
					NOT = { trait = in_hiding }
				}
			}
			liege = {
				character_event = { id = LoR.901 }
			}
		}
		if = {
			limit = {
				liege = {
					has_landed_title = e_byzantium
					any_realm_lord = { 
						ai = no
						NOT = { trait = in_hiding }
					}
				}
			}
			liege = {
				random_realm_lord = {
					limit = { 
						ai = no
						NOT = { trait = in_hiding }
					}
					character_event = { id = LoR.901 }
				}
			}
		}		
	}
	
	option = {
		name = OK
	}
}
 
Upvote 0