I'm trying to create a mod that changes all of the provinces in Ireland's government type from tribal to feudal. But I can't find the folder that holds that information. Thanks
game\history\titles\k_ireland.txt
. Copy it and put it into a directory in your_mod\history\titles\k_ireland.txt
, and then just change the government type by either altering one of the existing entries, or adding your own, e.g.:d_meath = {
862.11.22 = {
holder = 944
succession_laws = { gaelic_elective_succession_law }
government = tribal_government # <--------------------- Change to feudal_government
}
879.11.20 = {
holder = 0
}
935.1.1 = {
government = feudal_government #Ahistorical, just for ease of bookmarks.
}
1185.1.1 = {
liege = "k_england"
}
1185.1.1 = {
holder = 204514 #John of England
}
1203.1.1 = {
holder = 454124 #Maurice FitzGerald
}
1254.1.1 = {
holder = 454520 #Edward I of England
}
1307.7.8 = {
holder = 454510 #Edward II of England
}
1327.2.1 = {
holder = 454500 #Edward III of England
}
}
Thank you! Really appreciate the help and explanation.You want to edit the file ingame\history\titles\k_ireland.txt
. Copy it and put it into a directory inyour_mod\history\titles\k_ireland.txt
, and then just change the government type by either altering one of the existing entries, or adding your own, e.g.:
The title will have the government type of the last entry before the game start date (so if you make an entry in 1065.1.1 to change the government, you'll get it in 1066, but not 867, though I think in this case all the Irish titles should be feudal by then). You'll have to do this for each of the titles in Ireland, including county, duchy, and kingdom titles if they don't already have it, but the good news is all the relevant titles should be in this file. If you want, you could even just find and replace tribal_government in your editing software and probably fix it in a matter of seconds, as long as you don't care about any Irish title ever starting as tribal in your mod.Code:d_meath = { 862.11.22 = { holder = 944 succession_laws = { gaelic_elective_succession_law } government = tribal_government # <--------------------- Change to feudal_government } 879.11.20 = { holder = 0 } 935.1.1 = { government = feudal_government #Ahistorical, just for ease of bookmarks. } 1185.1.1 = { liege = "k_england" } 1185.1.1 = { holder = 204514 #John of England } 1203.1.1 = { holder = 454124 #Maurice FitzGerald } 1254.1.1 = { holder = 454520 #Edward I of England } 1307.7.8 = { holder = 454510 #Edward II of England } 1327.2.1 = { holder = 454500 #Edward III of England } }
After trying it outYou want to edit the file ingame\history\titles\k_ireland.txt
. Copy it and put it into a directory inyour_mod\history\titles\k_ireland.txt
, and then just change the government type by either altering one of the existing entries, or adding your own, e.g.:
The title will have the government type of the last entry before the game start date (so if you make an entry in 1065.1.1 to change the government, you'll get it in 1066, but not 867, though I think in this case all the Irish titles should be feudal by then). You'll have to do this for each of the titles in Ireland, including county, duchy, and kingdom titles if they don't already have it, but the good news is all the relevant titles should be in this file. If you want, you could even just find and replace tribal_government in your editing software and probably fix it in a matter of seconds, as long as you don't care about any Irish title ever starting as tribal in your mod.Code:d_meath = { 862.11.22 = { holder = 944 succession_laws = { gaelic_elective_succession_law } government = tribal_government # <--------------------- Change to feudal_government } 879.11.20 = { holder = 0 } 935.1.1 = { government = feudal_government #Ahistorical, just for ease of bookmarks. } 1185.1.1 = { liege = "k_england" } 1185.1.1 = { holder = 204514 #John of England } 1203.1.1 = { holder = 454124 #Maurice FitzGerald } 1254.1.1 = { holder = 454520 #Edward I of England } 1307.7.8 = { holder = 454510 #Edward II of England } 1327.2.1 = { holder = 454500 #Edward III of England } }
Sorry but still can't figure it out, got ahead of myself before actually testing. After changing the stuff you said to it still doesn't seem to work. Me and my friend have not only tried changing this, but the holdings file and governments file. Any ideas?You want to edit the file ingame\history\titles\k_ireland.txt
. Copy it and put it into a directory inyour_mod\history\titles\k_ireland.txt
, and then just change the government type by either altering one of the existing entries, or adding your own, e.g.:
The title will have the government type of the last entry before the game start date (so if you make an entry in 1065.1.1 to change the government, you'll get it in 1066, but not 867, though I think in this case all the Irish titles should be feudal by then). You'll have to do this for each of the titles in Ireland, including county, duchy, and kingdom titles if they don't already have it, but the good news is all the relevant titles should be in this file. If you want, you could even just find and replace tribal_government in your editing software and probably fix it in a matter of seconds, as long as you don't care about any Irish title ever starting as tribal in your mod.Code:d_meath = { 862.11.22 = { holder = 944 succession_laws = { gaelic_elective_succession_law } government = tribal_government # <--------------------- Change to feudal_government } 879.11.20 = { holder = 0 } 935.1.1 = { government = feudal_government #Ahistorical, just for ease of bookmarks. } 1185.1.1 = { liege = "k_england" } 1185.1.1 = { holder = 204514 #John of England } 1203.1.1 = { holder = 454124 #Maurice FitzGerald } 1254.1.1 = { holder = 454520 #Edward I of England } 1307.7.8 = { holder = 454510 #Edward II of England } 1327.2.1 = { holder = 454500 #Edward III of England } }
That's alright, if I had to guess, I would guess it's probably the file is in the wrong place.After trying it out
Sorry but still can't figure it out, got ahead of myself before actually testing. After changing the stuff you said to it still doesn't seem to work. Me and my friend have not only tried changing this, but the holdings file and governments file. Any ideas?
k_ireland.txt
to a mod, my file folder is like this: C:\Users\MyName\Documents\Paradox Interactive\Crusader Kings III\mod\my_mod\history\titles