HoI 4 - Achievement Awake and Angry does not fire 1.6.1 55d5

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

salisano

Sergeant
85 Badges
Jun 23, 2012
60
57
  • Crusader Kings II
  • Europa Universalis IV: Pre-order
  • Victoria 2
  • Sword of the Stars II
  • Semper Fi
  • Europa Universalis IV: Res Publica
  • March of the Eagles
  • Magicka
  • Leviathan: Warships
  • Knights of Pen and Paper +1 Edition
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III
  • For the Motherland
  • Europa Universalis IV: Wealth of Nations
  • Europa Universalis IV: Conquest of Paradise
  • Europa Universalis III
  • Dungeonland
  • Darkest Hour
  • Crusader Kings II: Sword of Islam
  • Crusader Kings II: Sunset Invasion
  • Europa Universalis IV: Art of War
  • Crusader Kings II: The Republic
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Legacy of Rome
  • Cities in Motion 2
  • Stellaris - Path to Destruction bundle
  • Stellaris: Leviathans Story Pack
  • Hearts of Iron IV: Cadet
  • Cities: Skylines - Snowfall
  • Crusader Kings II: Conclave
  • Europa Universalis IV: Cossacks
  • Cities: Skylines - After Dark
  • Stellaris
  • Hearts of Iron IV Sign-up
  • Stellaris Sign-up
  • Cities: Skylines
  • Hearts of Iron IV: Colonel
  • Crusader Kings II: Reapers Due
  • Europa Universalis IV: Rights of Man
  • Crusader Kings II: Horse Lords
  • Europa Universalis IV: Common Sense
  • Crusader Kings II: Way of Life
  • Europa Universalis IV: El Dorado
  • War of the Roses
  • Warlock: Master of the Arcane
  • Victoria 2: Heart of Darkness
  • Victoria 2: A House Divided
  • The Showdown Effect
  • Hearts of Iron IV: Together for Victory
  • Hearts of Iron 4: Arms Against Tyranny
Description of issue
Achievement Awake and Angry does not fire 1.6.1 55d5

Game Version
1.6.1 BETA

Enabled DLC
Together for Victory,
Death or Dishonor,
Waking the Tiger,
Man The Guns, All of the above

Do you have mods enabled?
No

Description
The achivement does not fire, the only core left are the european enclaves but they should be not required

Steps to Reproduce
just annex all china exept for the enclaves and see

Upload Attachment
 

Attachments

  • Ironman China 1.hoi4
    16,4 MB · Views: 7
  • 20190312191639_1.jpg
    20190312191639_1.jpg
    492,6 KB · Views: 30
  • Ironman China 1.hoi4
    16,4 MB · Views: 2
Upvote 0
I cannot reproduce this bug.

You must:
1. Directly own all Chinese core land (not the three European enclaves)
2. Have brought Japan to offer white peace by forcing them off the continent
 
It’s all there as you can see. From the screenshot you see I fulfilled the first white peace condition. I directly own everything you can check from the save. I annexed three warlords with decision while I invaded the others
The only weird thing I noticed is that the french port is directly owned by japan not by Vichy. No occupation or something just straightly by Japan, don’t know if it’s wad
 
I loaded up your save and instantly got the achievement. Fairly sure one of your mods is interfering with the achievement in some way... There's nothing I can do from our end, unfortunately.
 
I found a fix to this issue. Trigger:
Code:
all_state = {
                OR = {
                    is_owned_by = ROOT
                    AND = {
                        NOT = { is_core_of = CHI }
                        NOT = { is_core_of = MAN }
                        NOT = { state = 728 }
                        NOT = { state = 729 }
                        NOT = { state = 326 }
                    }
                }
            }
(broken - requires you to own all core states of China)
Should rater be:
Code:
all_state = {
                OR = {
                    is_owned_by = ROOT
                    AND = {
                        NOT = { is_core_of = CHI }
                        NOT = { is_core_of = MAN }
                    }
                    AND = {   
                        is_core_of = CHI
                        state = 728
                    }
                    AND = {   
                        is_core_of = CHI
                        state = 729
                    }
                    AND = {   
                        is_core_of = CHI
                        state = 326
                    }
                }
            }
I tested this heavily and it works as it should.
 
@Bratyn maybe you used an unreleased version; the AndTrigger
Code:
                   AND = {
                        NOT = { is_core_of = CHI }
                        NOT = { is_core_of = MAN }
                        NOT = { state = 728 }
                        NOT = { state = 729 }
                        NOT = { state = 326 }
                    }
can obviously never be true for any core of CHI.
Code:
all_state = {
  OR = {
    is_owned_by = ROOT
    AND = {
      NOT = { is_core_of = CHI }
      NOT = { is_core_of = MAN }
    }
    state = 728
    state = 729
    state = 326
  }
}
 
Code:
all_state = {
OR = {
is_owned_by = ROOT
AND = {
NOT = { is_core_of = CHI }
NOT = { is_core_of = MAN }
}
state = 728
state = 729
state = 326
}
}

For some reason when I was testing this particular piece of code the trigger was also always true, but I can't tell really why it was like that...
 
For some reason when I was testing this particular piece of code the trigger was also always true, but I can't tell really why it was like that...
I tested it as a NF condition (I don't know how to test modded achievements) and it worked fine there.
In any case we have to convince QA first that the current version does not work. Let's try @Ceebie
 
I also have this problem, very frustrating. I don't have any mods, beat Japan using the event peace, own all core provinces other than the 3 enclaves.
 
I loaded up your save and instantly got the achievement. Fairly sure one of your mods is interfering with the achievement in some way... There's nothing I can do from our end, unfortunately.
I have the same situation here, a save is uploaded. The problem still exists in 1.6.2.
 

Attachments

  • China1938.hoi4
    16,7 MB · Views: 1