Noob question 101 here, but what causes blank events to fire when you start a game? I'm getting them now, despite not editing any events to the best of my knowledge.
a lot of things could trigger it thoughNoob question 101 here, but what causes blank events to fire when you start a game? I'm getting them now, despite not editing any events to the best of my knowledge.
narrative_event = {
id = FVTG_KNZ.2
hide_window = yes
trigger = {
year = 1000
NOT = { is_title_active = d_pskov }
}
<...>
immediate = {
d_novgorod = {
kingdom = {
#dejure_liege_title =
d_pskov = {
de_jure_liege = prev
}
}
}
activate_title = { title = d_pskov status = yes }
c_pskov = { de_jure_liege = d_pskov }
c_velikiye_luki = { de_jure_liege = d_pskov }
e_russia = {
any_realm_title = {
AND = {
only_playable = yes
higher_tier_than = COUNT
}
narrative_event = { id = FVTG_KNZ.3 }
}
}
#if = {
# limit = {
# AND = {
# only_playable = yes
# any_realm_title = {
# de_jure_liege_or_above = e_russia
# }
# }
# }
# character_event = { id = FVTG_KNZ.3 }
#}
}
option = {
name = OK
}
}
narrative_event = {
id = FVTG_KNZ.3
title = EVTNAME_KNZ.3
desc = EVTDESC_KNZ.3
picture = GFX_evt_rus_principality_established
is_triggered_only = yes
only_playable = yes
any_realm_title = {
de_jure_liege_or_above = e_russia
}
option = {
name = EVTOPTA_KNZ.3
custom_tooltip = EVTOPTA_KNZ.3_TT
}
}
... I don't know:head+desk:
I don't even think I've integrated the cultural changes yet, there's a load of people with no-culture wondering around currently. Meh, I'll just go through everything then.
Edit: There's 2 blank events, does that mean that there's two problems?
Thanks for that but how do i decide who gets the title ?? The aim is as byzantine emperor i would like to be able to bestwo a minor title on a fellow ruler how is this done ??I think you can try this
Code:title_court_jester = { grant_title = ROOT }
Of course, you will have to check first to make sure the title is not taken. so:
Code:liege = { any_courtier = { if = { limit = {NOT = {has_minor_title = title_court_jester }} title_court_jester = { grant_title = ROOT } } } }
... I don't know
a single bracket error or typo can make as many as a hundred blank events, while a shetton of errors can result in only one :laugh:
I think I've found out what it is, the character files are giving a million (or thereabouts) different errors at the moment in Validator... which is somewhat aggravating. It means I'm going to have to rip out the ones I want and integrate characters on a case by case basis, which will slow progress to practically a standstill.
At least it'll be playable again (unless it's something else causing the errors :blink:, in which case I'll just cry for a bit).
Following this guide: http://ckiiwiki.com/Religion_modding
It says to look for "generalstuff.gfx" in the gfx/interface folder. I can't seem to find this at all; does anyone know where it is? I've checked for it, but it's absolutely not there.
c_hegumenos_constantinople = {
color={ 50 50 50 }
color2={ 255 255 255 }
capital = 496 #Byzantion (Constantinople)
culture = greek
title = "Hegumenos"
foa = "HEGUMENOS_FOA"
title_prefix = "HEGUMENOS_OF"
# Always exists
landless = yes
allow = {
OR = {
religion = orthodox
is_female = yes
}
# Cannot be held as a secondary title
primary = yes
}
As I read it, it means than you have to be either orthodox or female. Switch the OR for an AND.I have a title i want only women to have its a kinda nun thing so any ideas how i make it so only women have this title and ive tried is_female = yes
Code:c_hegumenos_constantinople = { color={ 50 50 50 } color2={ 255 255 255 } capital = 496 #Byzantion (Constantinople) culture = greek title = "Hegumenos" foa = "HEGUMENOS_FOA" title_prefix = "HEGUMENOS_OF" # Always exists landless = yes allow = { OR = { religion = orthodox is_female = yes } # Cannot be held as a secondary title primary = yes }
Ok thanks will that make it so from game start it will be a female ?As I read it, it means than you have to be either orthodox or female. Switch the OR for an AND.
I've made that clearer in the article now by prepending CKII\ before the paths.The interface folder in main game folder, not the, in the wiki article, aforementiond interface one in gfx.
I suppose you could just create a female character holding this title at game start, just to be sure. Otherwise, I don't know.Ok thanks will that make it so from game start it will be a female ?