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

kurtbrian

Older than dirt
10 Badges
Sep 9, 2001
9.122
0
www.lemonamiga.com
  • Hearts of Iron II: Armageddon
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: The Old Gods
  • Europa Universalis III Complete
  • Europa Universalis IV
  • Heir to the Throne
  • Europa Universalis III Complete
  • Europa Universalis III Complete
  • 500k Club
The End of Czechoslovakia, error in eventfile

In the event below there is an error in choice C which make both b and c give the same 'button name' in the game - it should most likely be actionname2040c

Code:
#########################################################################
#  The End of Czechoslovakia
#########################################################################
event = {
	id = 2040
	random = no
	country = GER
	trigger = {
		event = 2003 # German event signalling annexation of Sudetenland
		exists = CZE
		NOT = {
			OR = {
					exists = SLO
					alliance = { country = CZE country = GER }
			}
		}
	}
	name = "EVT_2040_NAME"
	desc = "EVT_2040_DESC"
	style = 0

	date = { day = 14 month = march year = 1939 }

	action_a = {
		name = "ACTIONNAME2040A" # Install Tiso in Slovakia
		command = { type = trigger which = 2201 } # CZE
	}
	action_b = {
		name = "ACTIONNAME2040B" # Partition Czecho-Slovakia with Hungary
		command = { type = trigger which = 2202 } # CZE
	}
	action_c = {
		[color=crimson]name = "ACTIONNAME2040B" # Honor the Munich Agreement[/color]
		command = { type = influence value = 3 }
		command = { type = warentry which = USA value = -2 }
		command = { type = warentry which = FRA value = -2 }
		command = { type = warentry which = ENG value = -2 }
	}
}
 
Upvote 0