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

unmerged(25407)

Colonel
Feb 4, 2004
825
2
I invaded France in '51(After the SU dowed me), and i flanked the maginot line through Italy(which i had annexed).

Belgian joined the allies a while later.

I have had belgian and france mainland for months now but the vichy and belgian capitalution events are refusing to fire. What gives?
 
I'd say 1951..

And i've been a long time reader... dec why do you start everything with "Hi"? Sound like a broken record of a car insurance commercial....
 
Hi,

You know, I couldn't really say why. Something I've always done I guess. Probablly comes form growing up before the internet age where we actually used to write letters to people trather than e-mailing them.

mm
 
Until December 30th, 1947

Vichy France
Code:
event = {
	id = 2021
	random = no
	country = GER

	trigger = {

		control = { province = 56 data = -1 } # Paris
		lost_national = { country = FRA value = 25 }	# At least 25% of national provinces lost

		OR = {
			random = 25
			lost_national = { country = FRA value = 40 }
		}

		OR = {
			control = { province = 320 data = FRA } # France controls Vichy
			control = { province = 320 data = GER } # Germany controls Vichy
		}

		war = { country = GER country = FRA }
		NOT = {
			OR = {
				year = 1942 # Year < 1941
				event = 2021
				war = { country = GER country = SOV }
				puppet = { country = VIC country = GER }
				puppet = { country = FRA country = GER }
			}
		}
	}

	name = "EVT_2021_NAME"
	desc = "EVT_2021_DESC"
	style = 0
	picture = "VIC"

	date = { hour = 12 day = 1 month = january year = 1936 }
	offset = 3 # Check for trigger conditions every three days
	deathdate = { hour = 12 day = 30 month = december year = 1947 }

	action_a = {
		name = "ACTIONNAME2021A" # Set up French Puppet Government in Vichy
		ai_chance = 99
		command = { type = trigger which = 2800 } # FRA
	}
	action_b = {
		name = "ACTIONNAME2021B" # Total conquest is preferable
		ai_chance = 1
		command = { }
	}
}
 
I suspect it is an unmodified file from before the end date was moved for DD, hence the end of Dec 1947 cessation date. Easy enough to amend - just make the 1947 into 1953, 1964.. whatever date you are running to, if using ARM.

Tim