• 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.
Dec 20, 2003
772
0
Hi,
i've found an error in the hannover,txt so that the event 3901 won't trigger the "Göttingen Professors dismissed in Hanover" event correct for prussia(wrong event id):
Code:
#########################################################################
#  The Professors Protest
#########################################################################
event = {
	id = 3901
	random = no
	country = HAN

	trigger = {
		event = 3900
		constitution = { type = monarchy }
	}

	name = "EVT_3901_NAME"
	desc = "EVT_1506_DESC"
	style = 0

	date = { day = 30 month = december year = 1836 }
	offset = 10
	deathdate = { day = 30 month = december year = 1837 }

	action_a = {
		name = "ACTIONNAME3901A" # Dismiss these disloyal subjects
		command = { type = pop_consciousness which = capitalists value = 3  }
		command = { type = pop_consciousness which = clerks value = 3 }
		command = { type = pop_consciousness which = craftsmen value = 3  }
		command = { type = pop_militancy which = capitalists value = 3  }
		command = { type = pop_militancy which = clerks value = 3  }
		command = { type = pop_militancy which = craftsmen value = 3  }
		command = { type = trigger which = 3300  } #BAD
		command = { type = trigger which = 4900  } #WUR
		command = { type = trigger which = 3500  } #BRA
		command = { type = trigger which = 3600  } #BRE
		command = { type = trigger which = 3400  } #BAY
		command = { type = trigger which = 3700  } #FRM
		command = { type = trigger which = 4000  } #HED
		command = { type = trigger which = 4100  } #HEK
		command = { type = trigger which = 3800  } #HAM
		command = { type = trigger which = 4200  } #HLS
		command = { type = trigger which = 4500  } #OLD
		command = { type = trigger which = 4300  } #LUB
		command = { type = trigger which = 4700  } #SAX
		command = { type = trigger which = 5100  } #LIP
		command = { type = trigger which = 5200  } #MEC
		command = { type = trigger which = 5000  } #COB
		command = { type = trigger which = 18200  } #NAS
		command = { type = trigger which = 18300  } #ANH
		command = { type = trigger which = 18400  } #WEI
		command = { type = trigger which = 18500  } #MEI
		[B]command = { type = trigger which = 4617  } #PRU[/B]
		command = { type = trigger which = 1506  } #AUS
	}
	action_b = {
		name = "ACTIONNAME3901B" # Agree to their demands
		command = { type = pop_consciousness which = capitalists value = 3  }
		command = { type = pop_consciousness which = clerks value = 3 }
		command = { type = pop_consciousness which = craftsmen value = 3  }
		command = { type = pop_militancy which = capitalists value = -1  }
		command = { type = pop_militancy which = clerks value = -1  }
		command = { type = pop_militancy which = craftsmen value = -1  }
		command = { type = prestige value = -100  }
		command = { type = trigger which = 3301  } #BAD
		command = { type = trigger which = 4901  } #WUR
		command = { type = trigger which = 3501  } #BRA
		command = { type = trigger which = 3601  } #BRE
		command = { type = trigger which = 3401  } #BAY
		command = { type = trigger which = 3701  } #FRM
		command = { type = trigger which = 4001  } #HED
		command = { type = trigger which = 4101  } #HEK
		command = { type = trigger which = 3801  } #HAM
		command = { type = trigger which = 4201  } #HLS
		command = { type = trigger which = 4501  } #OLD
		command = { type = trigger which = 4301  } #LUB
		command = { type = trigger which = 4701  } #SAX
		command = { type = trigger which = 5101  } #LIP
		command = { type = trigger which = 5201  } #MEC
		command = { type = trigger which = 5001  } #COB
		command = { type = trigger which = 18201  } #NAS
		command = { type = trigger which = 18301  } #ANH
		command = { type = trigger which = 18401  } #WEI
		command = { type = trigger which = 18501  } #MEI
		[B]command = { type = trigger which = 4618   } #PRU[/B]
		command = { type = trigger which = 1507  } #AUS
	}
}
The correct id's are 4607 and 4608. This way it triggers the danish question event! :D
 
Upvote 0