• 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(31954)

Captain
Jul 15, 2004
304
0
Soviet Union selects go to war in the Finland Winter War event sometime in late 1939. Sweden selects Send Aid to Finns. Flash forward to say June 1940, and Germany puppets Sweden. Shortly thereafter, Sweden decides to join its little brothers the Finns against the Soviets and declares war on the Soviets, drawing big brother Germany into the war. This has happened twice now.
 
Upvote 0
Mar 14, 2003
10.029
2
HerrGeneral said:
Soviet Union selects go to war in the Finland Winter War event sometime in late 1939. Sweden selects Send Aid to Finns. Flash forward to say June 1940, and Germany puppets Sweden. Shortly thereafter, Sweden decides to join its little brothers the Finns against the Soviets and declares war on the Soviets, drawing big brother Germany into the war. This has happened twice now.
How is this a bug? - It works as it should. Doesnt it?

- Are you complaining that the Swedes shouldnt DOW the ruskies?
 

unmerged(31954)

Captain
Jul 15, 2004
304
0
Because the event ran A SECOND TIME when Germany puppeted Sweden. When it first ran on the start of the Finnish Winter War, the Swedes elected to send aid. Then it runs AGAIN upon being puppeted, and the Swedes declare war.

THAT'S my problem, Maximus II.
 
Mar 14, 2003
10.029
2
From by limited understanding of scritping events, it only checks to see if Sweden is in an alliance with GER. if they are allied, then the event will not trigger.

I guess you could add the following line:

ispuppet = SWE

to the sweden.txt file in the db/events folder so that the second NOT in the trigger section makes sure that SWE is not a puppet!

Code:
#########################################################################
#  The Finnish Winter War - Swedish Non-Intervention
#########################################################################
event = { 
	id = 3301
	random = no
	country = SWE
	
	trigger = {
		war = { country = SOV country = FIN }
		event = 2621 #Finnish Winter War-Demands rejected
		atwar = no
		NOT = {
			OR = {
				ideology = liberal_conservative
				ideology = paternal_autocrat
				ideology = fascist
				ideology = nazi
			}
		}
		NOT = {
			alliance = { country = FIN country = GER }
[COLOR=DarkRed]                         [HERE][/COLOR]
		}
	}
	
	name = "EVT_3301_NAME"
	desc = "EVT_3301_DESC"
	style = 0
	
	date = { day = 17 month = july year = 1936 }
	offset = 7
	deathdate = { day = 31 month = december year = 1947 }
	
	action_a = {
		name = "ACTIONNAME3301A" # Send volunteers and materiel
		command = { type = manpowerpool value = -10 }
		command = { type = supplies value = -1000 }
		command = { type = trigger which = 3201 } # FIN
	}
	action_b = {
		name = "ACTIONNAME3301B" # Intervene for our brother people!
		command = { type = warentry value = 100 }
		command = { type = war which = SOV }
		command = { type = access which = FIN }
		command = { type = trigger which = 3202 } # FIN
	}
}

Not sure if this works so, if one of the more knowledgable posters could verify Id be grateful!

Once done Ill report it in the BETA forum.
 
Last edited:

unmerged(31954)

Captain
Jul 15, 2004
304
0
Sweden joins the USSR-Finland war. Both times, Germany was not at war with USSR and had no intention of going to war anytime soon, but next thing I knew, the Soviets were marching into my territories. I looked back in the log, and it was that event. The first time it happened, I thought I had just puppeted Sweden too soon. The second time I made sure that the event had already run. And then I puppeted, and in short order, the Soviets were marching into my territory.
 

unmerged(16184)

Corporal
Apr 12, 2003
36
0
Visit site
Same thing happened to me

I had the same thing happen to me twice yesterday. Thought it was just bad luck until seeing this post. Tried again and had exactly the same experience described above (including the log). Not sure if this is a bug or WAD. Solved the problem by annexing Sweden ... shame given I needed to max out the resources.



HerrGeneral said:
Sweden joins the USSR-Finland war. Both times, Germany was not at war with USSR and had no intention of going to war anytime soon, but next thing I knew, the Soviets were marching into my territories. I looked back in the log, and it was that event. The first time it happened, I thought I had just puppeted Sweden too soon. The second time I made sure that the event had already run. And then I puppeted, and in short order, the Soviets were marching into my territory.
 

jdrou

Field Marshal
74 Badges
Jun 10, 2002
24.161
461
  • Stellaris: Federations
  • Europa Universalis IV
  • Europa Universalis IV: Common Sense
  • Europa Universalis IV: Rights of Man
  • Hearts of Iron IV: Cadet
  • Stellaris: Galaxy Edition
  • Europa Universalis IV: Mare Nostrum
  • Europa Universalis IV: Cossacks
  • Paradox Order
  • Stellaris: Digital Anniversary Edition
  • Humble Paradox Bundle
  • Europa Universalis IV: Pre-order
  • Europa Universalis IV: El Dorado
  • Europa Universalis III: Collection
  • Europa Universalis III: Chronicles
  • 500k Club
  • 200k Club
  • Europa Universalis IV: Dharma Pre-order
  • Stellaris: Lithoids
  • Stellaris: Ancient Relics
  • Imperator: Rome Deluxe Edition
  • Europa Universalis IV: Golden Century
  • Stellaris: Megacorp
  • Europa Universalis IV: Dharma
  • Stellaris: Distant Stars
  • Stellaris: Apocalypse
  • Stellaris: Humanoids Species Pack
  • Europa Universalis IV: Cradle of Civilization
  • Stellaris: Synthetic Dawn
  • Europa Universalis IV: Third Rome
  • Europa Universalis IV: Mandate of Heaven
  • Stellaris - Path to Destruction bundle
  • Stellaris: Leviathans Story Pack
  • Deus Vult
  • Darkest Hour
  • Crusader Kings II
  • Hearts of Iron II: Armageddon
  • Arsenal of Democracy
  • Hearts of Iron Anthology
  • Victoria 2
  • Rome Gold
  • Victoria: Revolutions
  • Europa Universalis IV: Res Publica
  • Hearts of Iron III
  • For The Glory
  • Europa Universalis IV: Call to arms event
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis IV: Art of War
  • Stellaris: Galaxy Edition
Are you sure the same event is firing twice? There are two Swedish Winter War events: 3301 (Swedish Non-Intervention) and 3300 (Swedish Direct Intervention). What I think is happening is that 3301 is firing first then when Sweden is puppeted its government type changes to nazi which allows 3300 to fire. If they are supposed to be mutually exclusive then they should sleep each other.