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

King of an Imaginary Kingdom
May 26, 2005
71
0
I'm playing TGW as Sweden. War broke out in may 1915 (because of the 3rd balkan wars), and I joined the central powers in exchange for Aland. In late 1917, Russia surrendered, and in early 1918 it released a bunch of countries, including Finland. a couple of weeks after this event, I see "Soviet Russia had Aland to Sweden". but Finland owns Aland, not Russia(I didn't get Aland). does this mean I have to take Aland from finland?
 
It seems that you did not gain what you fought for... Actually, war with Russia is quite tricky for minor powers like Sweden. If you want to have territorial gains, I guess you have to defeat Russia before the revolution/independance events (let's say early 1917), otherwise you won't get what you're suppose to get.
 
Sprry for the unncisarily long delay. I had completely forgotten this. Here´s my fix.

Replace the text in db/events/finland with this text and see if it works.

Code:
########################## 
# FINLAND                # 
########################## 

# Finland is free! 

event = { 
    country = FIN 
    id = 19001 
    random = no 
    style = 0 

    name = "EVT_19001_NAME" 
    desc = "EVT_19001_DESC" 

    # Triggered by Russian 48121 / 48122 

    date = { day = 0 month = august year = 1914 } 
    offset = 1 
    deathdate = { day = 0 month = january year = 1925 } 

    action_a = { 
        name = "ACTIONNAME19001A" 
        command = { type = supplies value = 300 } 
        command = { type = oilpool value = 30 } 
        command = { type = steelpool value = 30 } 
        command = { type = coalpool value = 30 } 
        command = { type = rubberpool value = 30 } 
        command = { type = manpowerpool value = 80 } 
        command = { type = alignment which = democratic value = 30 } 
        command = { type = add_division which = infantry } 
        command = { type = add_division which = infantry } 
        command = { type = trigger which = 19002 }
    } 
} 

# Åland to sweden

event = { 
    country = FIN 
    id = 19002 
    random = no 
    style = 0 

    name = "Åland to Sweden" 
    desc = "As has been descided by the high contracting parties Russia and Sweden, Åland is to be henceforth considered sovereign swedish territory," 

    trigger = {
            event = 53005
            control = { province = 702 data = FIN }
            alliance = { country = GER country = SWE }
    }

    action_a = { 
        name = "ACTIONNAME19001A" 
        command = { type = secedeprovince which = SWE value = 702 } 
    } 
}