CK III - Beneficial title integration chancellor events require incorrect, excellent skill level.

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

CyberSpyder

Major
64 Badges
Jun 2, 2008
598
169
  • Crusader Kings II
  • Stellaris - Path to Destruction bundle
  • Sword of the Stars
  • Semper Fi
  • Europa Universalis IV: Res Publica
  • Europa Universalis III Complete
  • Heir to the Throne
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III
  • For the Motherland
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Arsenal of Democracy
  • Europa Universalis IV: Art of War
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Europa Universalis III
  • Hearts of Iron IV: Cadet
  • Crusader Kings II: Reapers Due
  • Tyranny: Archon Edition
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Together for Victory
  • Crusader Kings II: Monks and Mystics
  • Stellaris: Apocalypse
  • Crusader Kings Complete
  • Hearts of Iron IV: Death or Dishonor
  • Stellaris: Synthetic Dawn
  • Age of Wonders III
  • Crusader Kings II: Jade Dragon
  • Hearts of Iron IV: Expansion Pass
  • Stellaris Sign-up
  • Stellaris
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Pillars of Eternity
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • Crusader Kings II: Holy Knight (pre-order)
  • Hearts of Iron IV: No Step Back
  • 500k Club
  • Victoria 2
  • Supreme Ruler 2020
Short summary of your issue Beneficial title integration chancellor events require incorrect, excellent skill level.

Game Version 1.2.1

What OS are you playing on?
Windows

What platform are you using?
Steam

Do you have mods enabled? No

Have you tried verifying your game files (Steam only)?
Yes

How much "pain" is this causing you?
2

Please explain the issue you experienced in the most condensed way possible
The chancellor events that can fire to aid integration of a title are supposed to be able to trigger when their skill is better than mediocre (>8); instead, they are currently requiring better than high (>15).

Compare the triggered descriptions:
Code:
			desc = council_task_possible_side_effects
			triggered_desc = {
				trigger = {
					diplomacy > mediocre_skill_rating
				}
				desc = task_integrate_title_nobles_support_integration
			}
			triggered_desc = {
				trigger = {
					diplomacy > mediocre_skill_rating
				}
				desc = task_integrate_title_culture_supports_integration
			}

To the actual event trigger
Code:
	trigger = {
		NOT = { has_character_flag = had_event_chancellor_task_2102 }
		exists = cp:councillor_chancellor
		scope:councillor = cp:councillor_chancellor
		scope:councillor = {
			diplomacy > high_skill_rating
		}

In the original release there was an error that this condition had been copied over from the *bad* events, and required diplomacy < high_skill_rating. At some point that was 'fixed,' flipping the inequality - but it's still making a comparison to the wrong value.

To fix it, events/councillor_task_events/chancellor_task_events.txt needs to be modified on line 943, 1055, and 1178, changing the existing "diplomacy > high_skill_rating" lines to be "diplomacy > mediocre_skill_rating"

Please explain how to reproduce the issue


Is there anything else you think could help us identify/replicate the issue?


I have attached a save game
No
 
Upvote 0