• 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.
Thats compression. Since 2.0 or such the save files get zipped/packed by default.
While manually saving there's a box to the right of the filename to check or uncheck, i forgot.
Autosave compression is changed in the game options.

I quote myself

Ah, thanks.
What's it purpose; does autocompressing improve perfomance?
 
Pokemon collecting?

It just a term I used for micromanaging the house hold of multiple counts and barony,
So giving them good stock of women to marry and educate there kids, so giving your heirs a bigger pool of usable women or males to marry from.

So if done properly your stats will go up like crazy, sadly AI often have the tendency to mess up things :p.
Still it is fun none the less to see a worthless character with 3-8 stats , finally have a heir in the 20+ . Without even genius, or quick traits.

And awesome looking potraits too ;)
 
Go to your CK2 install directory. For example, mine is C:\games\Crusader Kings II. Put the cheat decisions file in the decisions sub-folder, for example C:\games\Crusader Kings II\decisions. Put the cheat localization in C:\games\Crusader Kings II\localisation (or wherever).


So then what do you do? The mod says it's active, but i'm not seeing the interface or whatever lets you choose what cheats to use. Thanks for the help.
 
So then what do you do? The mod says it's active, but i'm not seeing the interface or whatever lets you choose what cheats to use. Thanks for the help.

In the decisions tab.
 
How do I properly give myself title. I write give_title <c_karjala> <my ID> and nothing happens. How do I write this cheat correctly???

The names of some provinces in the game will have their name changed depending on the culture of the character ruling them. So if a Norseman rules over York, it becomes Jorvik. The command console always requires the original name though. If you put in c_karelen instead of c_karjala the command should work fine.
 
What are you typing, exactly? Please give an example.
 
Last edited:
It is "c_varadzin" (D and Z switched) in the code, so try that.

Thanks, Leiningen.

This is why I asked for an exact post; this sort of thing is not unusual.

Mjolnersson, in the future, you may want to check crusader kings ii\common\landed_titles\landed_titles.txt for the correct names of counties, etc.
 
Is there an event to fire your chancellor's improve lord's opinion?
Yes, event 910 :
Code:
# 910: The Chancellor attempts to improve relations with lord
character_event = {
	id = 910
	title = EVTNAME910
	desc = EVTDESC910
	picture = GFX_evt_emissary
	border = GFX_event_normal_frame_diplomacy

	capable_only = yes
	prisoner = no
	
	trigger = {
		has_job_action = action_improve_relations
		location = {
			any_province_lord = {
				OR = {
					primary_title = { higher_tier_than = BARON }
					same_liege = ROOT
				}
				is_priest = no
				NOT = { is_liege_of = ROOT }
				NOT = { character = ROOT }
			}
		}
	}
	
	mean_time_to_happen = {
		months = 100
		
		modifier = {
			factor = 1.25
			NOT = { diplomacy = 2 }
		}
		modifier = {
			factor = 1.25
			NOT = { diplomacy = 3 }
		}
		modifier = {
			factor = 1.25
			NOT = { diplomacy = 4 }
		}
		modifier = {
			factor = 1.25
			NOT = { diplomacy = 5 }
		}
		modifier = {
			factor = 0.75
			diplomacy = 10
		}
		modifier = {
			factor = 0.75
			diplomacy = 11
		}
		modifier = {
			factor = 0.75
			diplomacy = 12
		}
		modifier = {
			factor = 0.75
			diplomacy = 13
		}
		modifier = {
			factor = 0.75
			diplomacy = 15
		}
		modifier = {
			factor = 0.75
			diplomacy = 18
		}
	}
	
	option = {
		name = EVTOPTA910
		hidden_tooltip = {
			location = {
				random_province_lord = {
					limit = {
						is_priest = no
						NOT = { is_liege_of = ROOT }
						NOT = { character = ROOT }
						OR = {
							primary_title = { higher_tier_than = BARON }
							same_liege = ROOT
						}
					}
					character_event = { id = 20100 days = 7 }
				}
			}
		}
	}
}