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

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
Discussion Thread.

Should the suspected_occultist flag be removed, when you repent your sins?

Otherwise you are simply lieing to the confessor, which you never have to deal with again - the lie.

This event can trigger every 2 years, which can lead to constant lieing and even more Occult events continue to appear after you promise not to do it fiddle with it again.

7B963042308293D2EF69F893D5D19B7E3D91F163


Code:
#Confessor talks to suspected occultist
character_event = {
	id = 69046
	desc = "EVTDESC69046"
	picture = GFX_evt_bishop
	
	capable_only = yes
	prisoner = no
	
	trigger = {
		has_character_flag = suspected_occultist
		NOT = {
			has_character_modifier = confessor_and_occultist_timer
		}
	}
	
	mean_time_to_happen = {
		months = 60
	}
	
	immediate = {
		hidden_tooltip = {
			add_character_modifier = {
				name = confessor_and_occultist_timer
				duration = 730
				hidden = yes
			}
		}
	}
	
	option = {
		name = "EVTOPTA69046"
		add_trait = zealous
		piety = 1
	}
	option = {
		name = "EVTOPTB69046"
		add_character_modifier = {
			name = ignored_confessor
			duration = 730
		}
	}
}
 
Upvote 0