Hi, I've been trying to create a new title: "High king of the North" but I have run into some problems:
First what I have done:
Created a flag:
e_KingoftheNorth.tga in Crusader Kings II\gfx\flags
Added the title to landed_titles:
And to localisation: text.csv
e_KingoftheNorth;the North;;;;;;;;;;;;;x
e_KingoftheNorth_adj;Northern;;;;;;;;;;;;;x
Now, I think I have done everything correctly, but I cannot find an event effect that would actually give the title to anybody. My previous attempts seem to have failed:
Could anyone give me some pointers as to where I have gone wrong.
First what I have done:
Created a flag:
e_KingoftheNorth.tga in Crusader Kings II\gfx\flags
Added the title to landed_titles:
Code:
e_KingoftheNorth = {
color = { 0 0 102 }
capital = 269
allow = {
has_landed_title = k_norway
has_landed_title = k_england
has_landed_title = k_sweden
has_landed_title = k_denmark
has_landed_title = k_scotland
}
}
And to localisation: text.csv
e_KingoftheNorth;the North;;;;;;;;;;;;;x
e_KingoftheNorth_adj;Northern;;;;;;;;;;;;;x
Now, I think I have done everything correctly, but I cannot find an event effect that would actually give the title to anybody. My previous attempts seem to have failed:
Code:
become_high_king = {
potential = {
}
allow = {
has_landed_title = k_norway
has_landed_title = k_england
has_landed_title = k_sweden
has_landed_title = k_denmark
has_landed_title = k_scotland
}
effect = {
activate_title = { title = e_KingoftheNorth status = yes }
grant_title = e_KingoftheNorth
}
revoke_allowed = {
always = no
}
ai_will_do = {
factor = 0
}
}
Could anyone give me some pointers as to where I have gone wrong.