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

Pasha

Field Marshal
2 Badges
May 26, 2005
2.958
585
  • Darkest Hour
  • 500k Club
Is there anyway for a nation (in this case, France leaving the Allies) to leave an alliance while the alliance is at war? I checked the miscellaneous file with no luck.

The only workaround I can think of is leaving the Allies before war starts, and changing the setting in the misc. text so that I'm not automatically forced to join the Allies when was is declared.
 
Is there anyway for a nation (in this case, France leaving the Allies) to leave an alliance while the alliance is at war? I checked the miscellaneous file with no luck.

The only workaround I can think of is leaving the Allies before war starts, and changing the setting in the misc. text so that I'm not automatically forced to join the Allies when was is declared.

There only one way to leave alliance during war and sign peace treaty with your potential enemy

command = { type = leave_alliance }
command = { type = peace which = GER value = 1 }

I'm like "call to arms" system from EU,VIC, HOI III-IV. Where you can refuse to honor your alliance
 
There only one way to leave alliance during war and sign peace treaty with your potential enemy

command = { type = leave_alliance }
command = { type = peace which = GER value = 1 }

I'm like "call to arms" system from EU,VIC, HOI III-IV. Where you can refuse to honor your alliance

Ah, ok. Thank you Nikita!
 
There only one way to leave alliance during war and sign peace treaty with your potential enemy

command = { type = leave_alliance }
command = { type = peace which = GER value = 1 }

I'm like "call to arms" system from EU,VIC, HOI III-IV. Where you can refuse to honor your alliance
Nice decision Idea for the PwV. ;)

Would it be possible to write a event for a peace treaty in stalemate wars? Especially for democracies when war isn't going well and dragging on far to long. example the Vietnam War.
 
Last edited:
Is there anyway for a nation (in this case, France leaving the Allies) to leave an alliance while the alliance is at war? I checked the miscellaneous file with no luck.

The only workaround I can think of is leaving the Allies before war starts, and changing the setting in the misc. text so that I'm not automatically forced to join the Allies when was is declared.

You can also :

Code:
*type = leave_alliance [when = 0/1]        # This country leaves alliance
    when = 0 (default, pre DH 1.03 behavior) - Do not leave old wars when leaving the alliance.
        Note: This setting can create unwanted in-game situations and using it should be avoided!
    when = 1 – Leaves old alliance wars (white separate peace) together with leaving the old alliance.

* from event commands.txt
 
You can also :

Code:
*type = leave_alliance [when = 0/1]        # This country leaves alliance
    when = 0 (default, pre DH 1.03 behavior) - Do not leave old wars when leaving the alliance.
        Note: This setting can create unwanted in-game situations and using it should be avoided!
    when = 1 – Leaves old alliance wars (white separate peace) together with leaving the old alliance.

* from event commands.txt

Thank you @pakotorino ... I'll test this out tonight when I get home :)