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

Limith

Modding for Myself
18 Badges
Apr 7, 2010
3.742
369
  • Darkest Hour
  • Deus Vult
  • East India Company
  • Europa Universalis III Complete
  • Divine Wind
  • Crusader Kings II
  • Heir to the Throne
  • Rome: Vae Victis
  • Rome Gold
  • Sword of the Stars
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • Stellaris Sign-up
  • 500k Club
  • Victoria 2
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • Europa Universalis IV
I checked the save file to make sure the conditions were present, that the event was never fired before, and everything checks out, but I can't seem to get the event below to fire normally (it works fine when triggered via console). Can someone help me?

Code:
event = {
	id = 190100
	random = no
	country = U09
	
	trigger = {
		flag = clovis_viceroy
		not = { flag = lelouch_returned }
	}
	
	name = "Civil Administration Announced!"
	desc = "Britannia has officially named Clovis vi Britannia as the viceroy of Area 11. In an attempt to stabilize the new regime, Clovis has agreed on a coalition civilian government between natives and Britannians."
	style = 2
	
	date = { day = 17  month = september year = 1957 }
	offset = 1
	date = { day = 1  month = 1 year = 1958 }
		
	picture = "clovis"
	
	action_a = {
		name = "May his rule be fair and just."
		command = { type = headofstate which = 10510 }
		command = { type = headofgovernment which = 10513 }
		command = { type = foreignminister which = 10516 }
		command = { type = armamentminister which = 10517 }
		command = { type = ministerofsecurity which = 10518 }
		command = { type = ministerofintelligence which = 10519 }
		command = { type = chiefofstaff which = 10520 }
		command = { type = chiefofarmy which = 10523 }
		command = { type = sleepevent which = 190100}
		command = { type = sleepevent which = 190101}
		command = { type = sleepevent which = 190102}
	}
	
}
 
Last edited: