I was thinking I could use MOBILIZATION_4.txt to do this but I realized its not specific enough. It lets you see if a country has been declared war on by a specific faction but not a specific side.
So here is my problem
- Trying to figure out if Japan declared war on the Allies
- Was going to use the MOBILIZATION_4.txt file but I realized a problem in saying
- If I add a condition here #CONDITION= 112 [1] [1]
- This condition will be tricked into firing when Italy joins the Axis
- This (reverse) condition works to tell me if the Allies declared war on Japan #CONDITION= 60 [1] [2]
So in short, their is no way to figure out if Japan declared war on the allies
Code: Select all
{
#NAME= DE 1062 - Allies DoW on Japan
#POPUP=
#IMAGE=
#SOUND=
#FLAG= 1
#TYPE= 0
#AI= 0
#GV= 1[1,100]
#LINK= 0[0]
#LEVEL= 0
#COUNTRY_ID= 60
#TRIGGER= 100
#NM_UPDOWN= 0
#NM_TURNS= 0
#DECISION= 1062
; Japan declared war on by Allies
#CONDITION= 60 [1] [2]
}
{
#NAME= DE 1063 -
#POPUP=
#IMAGE=
#SOUND=
#FLAG= 1
#TYPE= 0
#AI= 0
#GV= 1[1,100]
#LINK= 0[0]
#LEVEL= 0
#COUNTRY_ID= 112
#TRIGGER= 100
#NM_UPDOWN= 0
#NM_TURNS= 0
#DECISION= 1063
#CONDITION= 112 [1] [1]
}
