Does the AI EVER let a player add a province to the HRE when they are not emperor? I have never once gotten the HRE to allow me to add a province, regardless of relationship, when I am not HRE.
Yes, AI Emperors accept human requests to join the Empire. If I am adjacent to the Empire (eg Poland, Teutonic Order, Hungary) I virtually always add enough provinces to get Imperial Integrity (IE add my capital, and daisy chain to it if necessary). Sometimes I have to ask two or three times before I get a yes, but I eventually get a yes.
There are modifiers however. The Emperor won't add anyone larger than his own country. I believe also the higher your infamy the less likely he is to accept, and that you want to max relations in order to have a reasonable chance. The exact code is below:
Code:
#Asking to join province
country_event = {
id = 9493
title = "EVTNAME9493"
desc = "EVTDESC9493"
is_triggered_only = yes
option = {
name = "EVTOPTA9493"
ai_chance = {
factor = 10
modifier = {
factor = 2
relation = { who = FROM value = 150 }
}
modifier = {
factor = 0
from = {
owner = {
badboy = 0.3
}
}
}
modifier = {
factor = 0
NOT = {
num_of_cities = FROM
}
}
}
add_imperial_influence = 1
from = {
hre = yes
province_event = 9494
}
}
option = {
name = "EVTOPTB9493"
ai_chance = {
factor = 10
}
from = {
hre = no
province_event = 9495
}
}
}