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

Panzerschiffe

King
4 Badges
Oct 20, 2005
2.122
351
  • Crusader Kings II
  • Europa Universalis IV
  • Hearts of Iron III
  • 500k Club
Theres no such event, but ive written one myself since i wanted to test them out. They've got tons of tech teams, but their leaders arent great. They didnt get the finnish leaders which are the best ones basically.

You start off as sweden and turn into SCA and then inherit all the other realms. Its a good idea to release iceland when you havent yet inherited the cores since they'll get free IC. Ive also included the baltic states which gives you over 80 IC and thus 5 tech teams. Making you a rather big world power. All you need now are colonies :p

PHP:
#####################################

### Scandinavia Unites!

event = {
id = 9999
random = no
country = SWE

name = "Scandinavia!"
desc = "The seperate entities of Scandinavia unite."
picture = "finland_sweden"
style = 0

date = { day = 1 month = january year = 1936 }

	action_a = {
	name = "Let us band together..."
	ai_chance = 100
		command = { type = inherit which = NOR } #Annexes Norway
		command = { type = inherit which = DEN } #Annexes Denmark
		command = { type = inherit which = FIN } #Annexes Finland
		command = { type = country which = SCA } #Makes Sweden Scandinavia
		command = { type = set_domestic which = democratic value = 8 }
		command = { type = set_domestic which = political_left value = 4 }
		command = { type = set_domestic which = free_market value = 10 }
		command = { type = set_domestic which = defense_lobby value = 5 }
		command = { type = set_domestic which = freedom value = 8 }
		command = { type = set_domestic which = professional_army value = 6 } 
		command = { type = set_domestic which = interventionism value = 6 }
	}
}

#####################################

### Finland and Denmark accept the unification

event = {
id = 9998
random = no
country = SCA

name = "Unification"
desc = "Finland and Denmark joins us as one nation"
picture = "finland_sweden"
style = 0


date = { day = 2 month = january year = 1936 }

action_a = {
name = "Perfect!"
ai_chance = 100
		command = { type = addcore which = 103 } # Finland
		command = { type = addcore which = 141 }
		command = { type = addcore which = 142 }
		command = { type = addcore which = 143 }
		command = { type = addcore which = 140 }
		command = { type = addcore which = 138 }
		command = { type = addcore which = 139 }
		command = { type = addcore which = 137 }
		command = { type = addcore which = 131 }
		command = { type = addcore which = 130 }
		command = { type = addcore which = 132 }
		command = { type = addcore which = 136 }
		command = { type = addcore which = 148 }
		command = { type = addcore which = 147 }
		command = { type = addcore which = 144 }
		command = { type = addcore which = 149 }
		command = { type = addcore which = 145 }
		command = { type = addcore which = 146 }
		command = { type = addcore which = 91 } # Kolding and B...something
		command = { type = addcore which = 295 }
}
}

#####################################

### We shall include the Baltic states in this new nation

event = {
id = 9997
random = no
country = SCA

name = "Baltic States join our nation"
desc = "Lithuania, Latvia, and Estonia join our cause"
picture = "finland_sweden"
style = 0


date = { day = 3 month = january year = 1936 }

action_a = {
name = "Wonderful!"
ai_chance = 100
		command = { type = addcore which = 206 } # Lithuania
		command = { type = addcore which = 577 }
		command = { type = addcore which = 207 }
		command = { type = addcore which = 511 }
		command = { type = addcore which = 205 } # Latvia
		command = { type = addcore which = 204 }
		command = { type = addcore which = 203 }
		command = { type = addcore which = 197 }
		command = { type = addcore which = 202 }
		command = { type = addcore which = 198 }
		command = { type = addcore which = 194 }
		command = { type = addcore which = 196 }
		command = { type = addcore which = 195 }
		command = { type = addcore which = 193 }
		command = { type = addcore which = 199 }
		command = { type = inherit which = LIT } #Annexes Lithuania
		command = { type = inherit which = LAT } #Annexes Latvia
		command = { type = inherit which = EST } #Annexes Estonia
}
}

I havent used it in a while, but it should work pretty well.

edit:
look at all those purdy colors!
hehe
 

unmerged(47221)

Recruit
Aug 6, 2005
7
0
I can't seem to get the events you provided, Panzerschiffe, to work properly. The first event, 9999 triggers, which forms scandinavia with Norway, Denmark, and Finland annexed.

However then it somehow bugs itself and no more events fire, 9998, 9997. Even using the console to try and manually trigger the events they don't work. If I restart the scenario and use the console to make the other two events trigger (9997, 9998) before the forming of Scandinavia 9999 they work but as soon as event 9999 fires, bugged, and no other event in the game can fire.

Is there something I haven't done properly, such as put the events in the wrong file? (I tried it in the Sweden events file, then the HoI events file)

Or am I just not seeing the fault in the code?

It'd be awesome to get this working, because I'd really like to try Scandinavia.

Cheers in advance.