I am looking for some way to compare a characters stats so that I can edit the ambitions to only be allowed for the "better" stats (the 3 best ones).
Since I am absolutly new to modding the basic question is, is it possible at all or do I have to compromise by using fix minima values as in (allow= { diplo = 10 })? And if it is how can I do it?
I have tried the following, but it didnt work as intended....
(My amature addition is the stuff in red
o)
Since I am absolutly new to modding the basic question is, is it possible at all or do I have to compromise by using fix minima values as in (allow= { diplo = 10 })? And if it is how can I do it?
I have tried the following, but it didnt work as intended....
(My amature addition is the stuff in red
Code:
obj_become_chancellor = {
type = character
expectation_of_liege = yes
allow = {
prisoner = no
age = 16
is_councillor = no
liege = {
NOT = { character = ROOT }
[COLOR="#FF0000"]{
{
{diplomacy > martial}
AND
{diplomacy > stewardship}
OR
{diplomacy > intrigue}
OR
{diplomacy > learning}
}
OR
{
{diplomacy > stewardship}
AND
{diplomacy > intrigue}
OR
{diplomacy > learning}
}
OR
{
{diplomacy > intrigue}
AND
{diplomacy > learning}
}
}[/COLOR]
}
[...]