• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

JaceX

Major
17 Badges
Jan 4, 2010
551
313
  • Crusader Kings III: Royal Edition
  • Europa Universalis IV
  • Crusader Kings III
  • Crusader Kings II
  • Europa Universalis III: Chronicles
  • Europa Universalis IV: Call to arms event
  • Sengoku
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Sword of Islam
  • Mount & Blade: With Fire and Sword
  • Mount & Blade: Warband
  • Europa Universalis IV: Pre-order
  • 500k Club
  • Heir to the Throne
  • Divine Wind
  • Europa Universalis III
  • Cities in Motion
One line summary of your issue
Concubine Pregnancy Double Notifications

Game Version
3.1 KKAD

What expansions do you have installed?
All of the above

Do you have mods enabled?
No

Please explain your issue is in as much detail as possible.
Event HFP.20067 from the HFP_pregnancy_events.txt file fires for "lovers" who are concubines causing this and the birth_events.txt 404 event to fire at the same time.

The solution would be to alter the HFP.20067 event to this:

#Notify lover that his lover is pregnant.
character_event = {
id = HFP.20067
desc = {
trigger = {
FROM = {
OR = {
AND = {
is_married = no
is_consort = no
}
is_married = ROOT
is_consort = ROOT
}
}
}
text = EVTDESCHFPA20067
}
desc = {
trigger = {
OR = {
FROM = {
is_married = yes
NOT = { is_married = ROOT }
}
FROM = {
is_consort = yes
NOT = { is_consort = ROOT }
}
}
}
text = EVTDESCHFPB20067
}
picture = GFX_evt_pregnancy

trigger = {
FROM = {
#Otherwise double notification.
NOR = {
is_married = ROOT
is_consort = ROOT
}
}
}
is_triggered_only = yes

option = {
name = EVTOPTAHFP20067
trigger = {
FROM = {
OR = {
AND = {
is_married = no
is_consort = no
}
is_married = ROOT
is_consort = ROOT
}
}
}
}
option = {
name = EVTOPTBHFP20067
trigger = {
OR = {
FROM = {
is_married = yes
NOT = { is_married = ROOT }
}
FROM = {
is_consort = yes
NOT = { is_consort = ROOT }
}
}
}
}
}

Steps to reproduce the issue.
Have a concubine that is also a lover. Have her become pregnant. Wait for the events to fire at the same time.

Upload Attachment
 

Attachments

  • births.png
    births.png
    1,3 MB · Views: 6
Upvote 0