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

Darkrenown

Star marshal
142 Badges
Jan 8, 2002
24.761
16.975
no
  • Leviathan: Warships
  • Europa Universalis IV: Call to arms event
  • For The Glory
  • For the Motherland
  • Gettysburg
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III Collection
  • Heir to the Throne
  • Impire
  • Europa Universalis III Complete
  • King Arthur II
  • Knights of Pen and Paper +1 Edition
  • Europa Universalis IV: Wealth of Nations
  • Lost Empire - Immortals
  • Magicka
  • Majesty 2
  • Majesty 2 Collection
  • March of the Eagles
  • Europa Universalis III Complete
  • Naval War: Arctic Circle
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Rome Gold
  • Hearts of Iron IV: No Step Back
  • Crusader Kings II: Sunset Invasion
  • Ancient Space
  • Arsenal of Democracy
  • Hearts of Iron II: Armageddon
  • Cities in Motion
  • Cities in Motion 2
  • 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
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • A Game of Dwarves
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • Deus Vult
  • Dungeonland
  • East India Company
  • Europa Universalis III
  • Europa Universalis III: Chronicles
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Art of War
There's some details in the manual. If an extream party gets elected it may change government types, or if unity gets low parties may stage a coup or start a civil war. The idea is then engine should handle this now and events aren't needed.
 

panther-anthro

General
126 Badges
Sep 22, 2007
2.129
330
www.gamerisle.org
  • Cities: Skylines - Snowfall
  • King Arthur II
  • Magicka
  • Majesty 2
  • March of the Eagles
  • Europa Universalis III Complete
  • Naval War: Arctic Circle
  • Europa Universalis IV: Res Publica
  • Victoria: Revolutions
  • Europa Universalis: Rome
  • Sengoku
  • Sword of the Stars
  • Sword of the Stars II
  • Europa Universalis III Complete
  • Europa Universalis IV: Cossacks
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • Rome: Vae Victis
  • Warlock: Master of the Arcane
  • Warlock 2: The Exiled
  • Warlock 2: Wrath of the Nagas
  • Cities: Skylines - After Dark
  • Stellaris: Galaxy Edition
  • Europa Universalis IV: Pre-order
  • Stellaris: Galaxy Edition
  • Deus Vult
  • 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
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Darkest Hour
  • A Game of Dwarves
  • Europa Universalis III
  • Divine Wind
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Art of War
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Call to arms event
  • For The Glory
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III Collection
  • Heir to the Throne
There's some details in the manual. If an extream party gets elected it may change government types, or if unity gets low parties may stage a coup or start a civil war. The idea is then engine should handle this now and events aren't needed.

I looked at the literal events, it's not there. So Apparently that only applies to the types that are listed.

Code:
#######################
# Social Conservative #
#######################
country_event = {
	
	id = 4001

	trigger = {
		not = { national_unity = 80 }
		dissent = 10
		social_conservative = {
			organisation = 60
			popularity = 60
		}
		not = { government = social_conservatism }
		not = { government = spanish_social_conservatism }
		not = { government = market_liberalism }
		not = { government = social_democracy }
		not = { government = social_liberalism }
	}

	mean_time_to_happen =  {
		months = 12
	}

	title = "EVTNAME4001"
	desc = "EVTDESC4001"
	picture = "coup"

	option = {
		name = "EVTOPTA4001"
		government = social_conservatism
	}
}
####################
# Social Democracy #
####################
country_event = {
	
	id = 4002

	trigger = {
		not = { national_unity = 80 }
		dissent = 10
		social_democrat = {
			organisation = 60
			popularity = 60
		}
		not = { government = social_conservatism }
		not = { government = spanish_social_conservatism }
		not = { government = market_liberalism }
		not = { government = social_democracy }
		not = { government = social_liberalism }
	}

	mean_time_to_happen =  {
		months = 12
	}

	title = "EVTNAME4002"
	desc = "EVTDESC4002"
	picture = "coup"

	option = {
		name = "EVTOPTA4002"
		government = social_democracy

	}
}
######################
# Socialist Republic #
######################
country_event = {
	
	id = 4003

	trigger = {
		not = { national_unity = 80 }
		dissent = 10
		leninist = {
			organisation = 60
			popularity = 60
		}
		not = { government = left_wing_radicals }
		not = { government = socialist_republic }
		not = { government = federal_socialist_republic }
	}

	mean_time_to_happen =  {
		months = 12
	}

	title = "EVTNAME4003"
	desc = "EVTDESC4003"
	picture = "coup"

	option = {
		name = "EVTOPTA4003"
		government = socialist_republic
	}
}
##############################
# Federal Socialist Republic #
##############################
country_event = {
	
	id = 4004

	trigger = {
		not = { national_unity = 80 }
		dissent = 10
		stalinist = {
			organisation = 60
			popularity = 60
		}
		not = { government = left_wing_radicals }
		not = { government = socialist_republic }
		not = { government = federal_socialist_republic }
	}

	mean_time_to_happen =  {
		months = 12
	}

	title = "EVTNAME4004"
	desc = "EVTDESC4004"
	picture = "coup"

	option = {
		name = "EVTOPTA4004"
		government = federal_socialist_republic

	}
}
####################
# Fascist Republic #
####################
country_event = {
	
	id = 4005

	trigger = {
		not = { national_unity = 80 }
		dissent = 10
		fascistic = {
			organisation = 60
			popularity = 60
		}
		not = { government = national_socialism }
		not = { government = fascist_republic }
		not = { government = germanic_fascist_republic }
		not = { government = right_wing_republic }
		not = { government = hungarian_right_wing_republic }
		not = { government = right_wing_autocrat }
		not = { government = absolute_monarchy }
		not = { government = imperial }
	}

	mean_time_to_happen =  {
		months = 12
	}

	title = "EVTNAME4005"
	desc = "EVTDESC4005"
	picture = "coup"

	option = {
		name = "EVTOPTA4005"
		government = fascist_republic

	}
}
######################
# National Socialism #
######################
country_event = {
	
	id = 4006

	trigger = {
		not = { national_unity = 80 }
		dissent = 10
		national_socialist = {
			organisation = 60
			popularity = 60
		}
		not = { government = national_socialism }
		not = { government = fascist_republic }
		not = { government = germanic_fascist_republic }
		not = { government = right_wing_republic }
		not = { government = hungarian_right_wing_republic }
		not = { government = right_wing_autocrat }
		not = { government = absolute_monarchy }
		not = { government = imperial }
	}

	mean_time_to_happen =  {
		months = 12
	}

	title = "EVTNAME4006"
	desc = "EVTDESC4006"
	picture = "coup"

	option = {
		name = "EVTOPTA4006"
		government = national_socialism
	}
}