• 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.

CountCristo

CountCristo
95 Badges
Sep 12, 2014
290
633
  • Europa Universalis IV: Call to arms event
  • Hearts of Iron III
  • Victoria 2: A House Divided
  • Stellaris: Humanoids Species Pack
  • Cities: Skylines Industries
  • Surviving Mars: First Colony Edition
  • Shadowrun: Dragonfall
  • Shadowrun Returns
  • Europa Universalis IV: Dharma
  • Stellaris: Distant Stars
  • Cities: Skylines - Parklife
  • BATTLETECH - Digital Deluxe Edition
  • Europa Universalis IV: Rule Britannia
  • Stellaris: Apocalypse
  • Europa Universalis IV: Golden Century
  • Hearts of Iron IV: Expansion Pass
  • Cities: Skylines - Green Cities
  • Age of Wonders III
  • Tyranny - Bastards Wound
  • Stellaris: Synthetic Dawn
  • Hearts of Iron IV: Death or Dishonor
  • Surviving Mars
  • BATTLETECH
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris: Federations
  • Hearts of Iron 4: Arms Against Tyranny
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: By Blood Alone
  • Stellaris: Nemesis
  • Stellaris: Necroids
  • Europa Universalis 4: Emperor
  • Battle for Bosporus
  • Crusader Kings III
  • Imperator: Rome - Magna Graecia
  • Crusader Kings II: Holy Fury
  • Hearts of Iron IV: La Resistance
  • Stellaris: Lithoids
  • Age of Wonders: Planetfall
  • Stellaris: Ancient Relics
  • Cities: Skylines - Campus
  • Prison Architect
  • Hearts of Iron IV: Expansion Pass
  • Imperator: Rome
  • Cities: Skylines - Mass Transit
  • Stellaris Sign-up
  • Cities: Skylines
  • Europa Universalis IV: El Dorado
  • Victoria 2
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
Can anyone tell me why event WoL.102 is firing when I try to seduce my wife?

I have changed the code around that trigger to this:

Code:
        effect = {
            hidden_tooltip = {
                FROM = {
                    opinion = {
                        who = ROOT
                        modifier = opinion_seducing
                        years = 1000
                    }
                    
                    if = {
                        limit = {
                            is_close_relative = ROOT
                            NOT = { is_main_spouse = ROOT }
                            NOT = { is_consort = ROOT }
                            NOT = { religion = messalian }
                            NOT = { religion = zoroastrian }
                        }
                        character_event = { id = WoL.102 days = 1 } # Warning - Incest scandal risk
                        break = yes
                    }

Which I thought would make it such that it would only fire if the close relative was not my spouse (or consort).
Yet the event still fires

Any help appreciated!