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

unmerged(11656)

Bradley wannabe
Nov 12, 2002
143
0
Visit site
Historical event.
When both, Germany and Finland fought against SU, Germany sent a lot of supplies to finnish army.

I have tested the event, and it seems to work. For 1941 scenario you need to make additional events and alter
date and deathdate.

This goes to finland.txt (..db\events)

Code:
#########################################################################
#  German Material Aid
#########################################################################
event = { 
	id = 6000
	random = no
	country = FIN
	
	# Triggered by GER 6001
	
	name = "Supplies from Germany"
	desc = "Supplies from Germany"
	style = 0
	
	action_a = {
		name = "OK" # Thanks!
		command = { type = supplies value = 75 }	
	}
}

This one to germany.txt

Code:
#########################################################################
#  Material Aid to Finland
#########################################################################
event = { 
	id = 6001
	random = no
	country = GER
	
	trigger = {
                alliance = { country = FIN country = GER }
                war = { country = SOV country = GER }
		
	}
	
	name = "Send supplies to Finland"
	desc = "Send supplies to Finland"
	style = 0
       
        date = { day = 1 month = december year = 1939 }
	offset = 14
	deathdate = { day = 31 month = december year = 1947 }
	
	action_a = {
		name = "OK"
	        command = { type = supplies value = -75 }
                command = { type = trigger which = 6000 } # FIN
	}
}


-