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

highsis

Field Marshal
29 Badges
Jan 9, 2011
2.970
769
  • Crusader Kings II: Charlemagne
  • Heir to the Throne
  • Hearts of Iron III
  • Europa Universalis IV
  • Divine Wind
  • Europa Universalis III Complete
  • Europa Universalis III
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: The Republic
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II
  • Crusader Kings II: Sunset Invasion
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron IV: By Blood Alone
  • Battle for Bosporus
  • Crusader Kings III
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Cadet
  • Stellaris
  • Crusader Kings II: Way of Life
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
immediate = {
random_lover = {
limit = {
NOT = {
reverse_opinion = { who = ROOT value = 25 }
}
}
character_event = { id = WoL.1101 }
}
}

This event occurred at mutual opinion of 100+. According to the event file it shouldn't fire if the reverse opinion is above 25... The scope might be misset? It repeated multiple times despite my attempt to keep my lover. the text talks about bickering and argument which doesn't make any sense with mutual 100+ opinion, either.
 
Upvote 0

Dracko81

Field Marshal
88 Badges
Jun 13, 2012
7.030
1.950
  • Tyranny: Archon Edition
  • Magicka
  • March of the Eagles
  • A Game of Dwarves
  • Victoria: Revolutions
  • Rome Gold
  • Semper Fi
  • Sengoku
  • Sword of the Stars
  • Sword of the Stars II
  • Supreme Ruler 2020
  • Pirates of Black Cove
  • Victoria 2: A House Divided
  • Warlock: Master of the Arcane
  • Warlock 2: The Exiled
  • Age of Wonders III
  • Stellaris: Galaxy Edition
  • Cities: Skylines Deluxe Edition
  • Stellaris: Synthetic Dawn
  • Pillars of Eternity
  • Tyranny: Archon Edition
  • Stellaris
  • Crusader Kings II: The Republic
  • Ancient Space
  • Arsenal of Democracy
  • Hearts of Iron II: Armageddon
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Impire
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sword of Islam
  • Heir to the Throne
  • Hearts of Iron III
  • For The Glory
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Conquest of Paradise
  • Surviving Mars
  • Divine Wind
  • Europa Universalis III
  • Darkest Hour
  • Crusader Kings II: Sunset Invasion
  • Europa Universalis IV: Pre-order
  • Mount & Blade: Warband
  • Mount & Blade: With Fire and Sword
  • Stellaris: Necroids
  • Cities: Skylines - After Dark
  • Crusader Kings II: Conclave
You really should note the event you are referring to in the post, or at least show the whole event.

Code:
character_event = {
	id = WoL.1100
	hide_window = yes
	
	capable_only = yes
	min_age = 16
	
	trigger = {
		has_dlc = "Way of Life"
		has_lover = yes
		any_lover = {
			NOT = {
				reverse_opinion = { who = ROOT value = 25 }
			}
		}
	}
	
	mean_time_to_happen = {
		months = 120
		
		modifier = {
			factor = 0.2
			trait = cruel
		}
		modifier = {
			factor = 0.5
			trait = cynical
		}
		modifier = {
			factor = 0.5
			trait = arbitrary
		}
		modifier = {
			factor = 0.75
			trait = wroth
		}
		modifier = {
			factor = 2.0
			trait = patient
		}
		modifier = {
			factor = 3.0
			trait = kind
		}
		modifier = {
			factor = 3.0
			has_focus = focus_seduction
		}
	}
	
	immediate = {
		random_lover = {
			[COLOR="#FF0000"]limit = {[/COLOR]
				NOT = {
					reverse_opinion = { who = ROOT value = 25 }
				}
			[COLOR="#FF0000"]}[/COLOR]
			character_event = { id = WoL.1101 }
		}
	}
}

Removing the red lines should resolve the issue. ;)