One line summary of your issue
[2.8.3.2] Chancellor will both raise and lower the quality of my book
Game Version
2.8.3.2
What expansions do you have installed?
Jade Dragon,
The Reapers Due,
Conclave,
Horse Lords,
Charlemagne,
Rajas of India,
Sons of Abraham,
The Old Gods,
The Republic,
Legacy of Rome,
Sword of Islam
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
If I have a good chancellor and no spymaster, while writing about relationships, JD.10062 tells me it will both raise and lower the quality of my book!
Changing the second 'if' to 'else_if' fixes the issue.
Steps to reproduce the issue.
Load the save, event window is up
Upload Attachment
[2.8.3.2] Chancellor will both raise and lower the quality of my book
Game Version
2.8.3.2
What expansions do you have installed?
Jade Dragon,
The Reapers Due,
Conclave,
Horse Lords,
Charlemagne,
Rajas of India,
Sons of Abraham,
The Old Gods,
The Republic,
Legacy of Rome,
Sword of Islam
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
If I have a good chancellor and no spymaster, while writing about relationships, JD.10062 tells me it will both raise and lower the quality of my book!
Code:
event_target:friendly_advice_target = {
show_scope_change = no
if = {
limit = {
has_job_title = job_chancellor
attribute_diff = { character = ROOT attribute = diplomacy value = 3 }
}
ROOT = {
show_scope_change = no
custom_tooltip = { text = higher_quality_of_book_TT }
set_higher_quality_of_book_flags_effect = yes
}
}
if = {
limit = {
has_job_title = job_spymaster
attribute_diff = { character = ROOT attribute = intrigue value = 3 }
}
ROOT = {
show_scope_change = no
custom_tooltip = { text = higher_quality_of_book_TT }
set_higher_quality_of_book_flags_effect = yes
}
}
else = {
ROOT = {
show_scope_change = no
custom_tooltip = { text = lower_quality_of_book_TT }
set_lower_quality_of_book_flags_effect = yes
}
}
}
Changing the second 'if' to 'else_if' fixes the issue.
Steps to reproduce the issue.
Load the save, event window is up
Upload Attachment
Attachments
Upvote
0