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

Xie

Colonel
16 Badges
Nov 8, 2011
1.160
24
  • Darkest Hour
  • Iron Cross
  • Majesty 2
  • Victoria 2
  • 500k Club
  • Hearts of Iron IV: Cadet
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron IV: Death or Dishonor
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: Expansion Pass
  • Hearts of Iron IV: La Resistance
  • Battle for Bosporus
  • Hearts of Iron IV: By Blood Alone
  • Hearts of Iron IV: No Step Back
  • Hearts of Iron 4: Arms Against Tyranny
  • Crusader Kings II
Can anyone help me with this event? I get a lhs error in line 39 when I run it.

Code:
Can you help me with this event? I get an lh error when I start with it.

[CODE]
event = {
	id = 626000
	random = no
	country = GER

	name = "Axis Breaks Down"
	desc = (gonna change this)
	style = 0

	trigger = {
		NOT = { 
			war = { country = GER country = SOV } 
			war = { country = GER country = ENG }
			allies = 25
			comintern = 25
			
			atwar = no
			NOT = { atwar = JAP }
			random = 30
			}
		}
		

 date = { day = 1 month = january year = 1936 }
        offset = 30
	deathdate = { day = 29 month = december year = 1963 }
			
		action_a = {
			ai_chance = 80
			name = World War III
			command = { type = war which = JAP }
                        command = { type = relation which = JAP value = -100 }
			command = { type = domestic which = defense_lobby value = 1 }
			command = { type = domestic which = interventionism value = 1 }
			command = { type = domestic which = defense_lobby value = 3 }
			}
		action_b = {
			ai_chance = 20
			name = Back Down
			command = { type = relation which = JAP value = -25 }
			command = { type = domestic which = defense_lobby value = -1 }
			command = { type = domestic which = interventionism value = -1 }
			command = { type = dissent value = 1 }
	}
}