In both options A and B of event 64015, a random courtier meeting certain criteria is selected to be the mistress the ROOT character has "entertain" him while his wife is old or sick. If more than one courtier meets the criteria, then the event could choose different women for each option. The selection should be moved to an immediate and saved as an event target.
Another thing I noticed in this event is that in the value 5 section of the random_list in option C, non-Christians get 5 piety, but the new modifier on the random value disables the section for non-Christians:
Another thing I noticed in this event is that in the value 5 section of the random_list in option C, non-Christians get 5 piety, but the new modifier on the random value disables the section for non-Christians:
Code:
5 = {
modifier = {
factor = 0
NOT = { religion_group = christian }
}
if = {
limit = {
NOT = { religion_group = christian }
}
piety = 5 # This will never be executed.
}
Last edited:
Upvote
0