http://www.ckiiwiki.com/Casus_Belli_modding#Scopes
- ROOT is the character who has a case for war. (for both titles and character scopes)
- FROM is the character who is being declared war on. (for both titles and character scopes)
So I assume you need to do something like this:
Code:
your_cb = {
ai_will_do = {
factor = 1
modifier = {
factor = 0
ROOT = {
has_character_flag = peaceful_ai
}
}
}
}
However if you just want to overwrite all CB for your mp-mod just set
Code:
ai_will_do = { factor = 0 }
-----------------------------
@NoxBestia
Code:
random_character = {
limit = {
is_lowborn = no
}
random_dynasty_member_even_if_dead = {
limit = {
is_alive = no
is_female = no
}
# your code
}
}
Does this work?
Last edited: