What is the maximum number of Warhammer specials that can be alive at a time?

[BACK]
What is the maximum number of Warhammer specials that can be alive at a time?
Posted On: June 4, 2023

First-person shooter co-op games usually limit the number of special units that can be alive at the same time, to avoid overwhelming the players with units that can easily wipe the team. For example, Left 4 Dead 2 has a console command, z_minion_limit (default: 3), that sets the maximum number of “special infected” zombies that can be alive at any given time. This number is 3 by default to give at least one player on the team a fighting chance.


I want to know what this value is for Vermintide 2. How many specials can be alive at any given time? (Where beyond that maximum, the AI director will no longer spawn specials.) Is there a limit for the same special-unit type, or for disablers, specifically?


Please mention any differences between the difficulties (especially Legend and Cataclysm), between the game modes (Campaign and Chaos Wastes), and if the “Seek and Destroy” deed modifier is applied (described as: “specials spawn with much higher frequency and in larger numbers”).


In Vermintide 2, what is the maximum number of specials that can be alive at a time?


Question from user galacticninja at gaming.stackexchange.com.


Answer:

In Vermintide 2's conflict_settings.lua, a file containing all the difficulty settings, we can see, under the header SpecialDifficultyOverrides [r. 637], the values for max_specials. These vary by difficulty.


In this file, the difficulties are named hard, harder, hardest, cataclysm, cataclysm_2, and cataclysm_3.


We can see how they correspond with the difficulty levels in-game from this table in the adjacent difficulty_settings.lua file [r. 367]:.


So max-specials in SpecialDifficultyOverrides only sets the maximum for difficulty levels for Veteran and higher, reaching, as suggested by galacticninja, two difficulty levels that can be (customized and) used in Weaves, from the Winds of Magic DLC.*.


Since Recruit is missing from the SpecialDifficultyOverrides class (not being a "special" difficulty, which makes sense), it must have a default value.


I think this default value is 2 for Recruit,† but it could be 3, as well.


The values for max_specials in SpecialDifficultyOverrides are:.


3 for Hard/Veteran and Harder/Champion;.


4 for Hardest/Legend;.


5 for Cataclysm/Cataclysm;.


6 for cataclysm_2 and cataclysm_3.


From the file it is also clear that the types of specials to be spawned don't change with difficulty, but the amount of specials of the same type does change slightly: from Legend difficulty onwards, max_of_same changes from 2 to 3.


Further down in the .lua file, there are some variations on this, called SpecialDifficultyOverrides_ followed by, among others, skaven, beastmen, chaos and combinations thereof, but they generally follow the same pattern (safe for the first difficulty sometimes receiving a max_specials value of 2 rather than 3).


The names refer to factions, but I'm not sure how these specific variables come into play: they might refer to specific maps. I'll look into that a little more.


* Somewhat corroborated by a table mentioned before the DifficultyMapping class in difficulty_settings.lua, called DefaultDifficulties, which doesn't mention cataclysm_2 and cataclysm_3.


† Mainly because, as mentioned later in this answer, there are variations on this table based on factions, that have their maximum lowered from the SpecialDifficultyOverrides's lowest 3 to 2.


The file enemy_package_loader_settings.lua points to a limit of 3 specials [r. 132], but the conditions (and the fact they are there to begin with) make this being the default seem improbable.


Answer from user Joachim at gaming.stackexchange.com.


[BACK]
What is the maximum number of Warhammer specials that can be alive at a time?
Posted On: June 4, 2023

First-person shooter co-op games usually limit the number of special units that can be alive at the same time, to avoid overwhelming the players with units that can easily wipe the team. For example, Left 4 Dead 2 has a console command, z_minion_limit (default: 3), that sets the maximum number of “special infected” zombies that can be alive at any given time. This number is 3 by default to give at least one player on the team a fighting chance.


I want to know what this value is for Vermintide 2. How many specials can be alive at any given time? (Where beyond that maximum, the AI director will no longer spawn specials.) Is there a limit for the same special-unit type, or for disablers, specifically?


Please mention any differences between the difficulties (especially Legend and Cataclysm), between the game modes (Campaign and Chaos Wastes), and if the “Seek and Destroy” deed modifier is applied (described as: “specials spawn with much higher frequency and in larger numbers”).


In Vermintide 2, what is the maximum number of specials that can be alive at a time?


Question from user galacticninja at gaming.stackexchange.com.


Answer:

In Vermintide 2's conflict_settings.lua, a file containing all the difficulty settings, we can see, under the header SpecialDifficultyOverrides [r. 637], the values for max_specials. These vary by difficulty.


In this file, the difficulties are named hard, harder, hardest, cataclysm, cataclysm_2, and cataclysm_3.


We can see how they correspond with the difficulty levels in-game from this table in the adjacent difficulty_settings.lua file [r. 367]:.


So max-specials in SpecialDifficultyOverrides only sets the maximum for difficulty levels for Veteran and higher, reaching, as suggested by galacticninja, two difficulty levels that can be (customized and) used in Weaves, from the Winds of Magic DLC.*.


Since Recruit is missing from the SpecialDifficultyOverrides class (not being a "special" difficulty, which makes sense), it must have a default value.


I think this default value is 2 for Recruit,† but it could be 3, as well.


The values for max_specials in SpecialDifficultyOverrides are:.


3 for Hard/Veteran and Harder/Champion;.


4 for Hardest/Legend;.


5 for Cataclysm/Cataclysm;.


6 for cataclysm_2 and cataclysm_3.


From the file it is also clear that the types of specials to be spawned don't change with difficulty, but the amount of specials of the same type does change slightly: from Legend difficulty onwards, max_of_same changes from 2 to 3.


Further down in the .lua file, there are some variations on this, called SpecialDifficultyOverrides_ followed by, among others, skaven, beastmen, chaos and combinations thereof, but they generally follow the same pattern (safe for the first difficulty sometimes receiving a max_specials value of 2 rather than 3).


The names refer to factions, but I'm not sure how these specific variables come into play: they might refer to specific maps. I'll look into that a little more.


* Somewhat corroborated by a table mentioned before the DifficultyMapping class in difficulty_settings.lua, called DefaultDifficulties, which doesn't mention cataclysm_2 and cataclysm_3.


† Mainly because, as mentioned later in this answer, there are variations on this table based on factions, that have their maximum lowered from the SpecialDifficultyOverrides's lowest 3 to 2.


The file enemy_package_loader_settings.lua points to a limit of 3 specials [r. 132], but the conditions (and the fact they are there to begin with) make this being the default seem improbable.


Answer from user Joachim at gaming.stackexchange.com.


[BACK]

Where is Anduin actually? Where is Anduin actually?

Posted On: July 29, 2023
I played Shadowlands a little bit at the end so I am not familiar with much that happend in that expansion. I am now leveling my second character in Dragonflight. I am at the Stormwind docks and sa...[More]


How do Steam Workshop mods and Nexus mods interact? How do Steam Workshop mods and Nexus mods interact?

Posted On: February 9, 2023
All of my mods so far are on the Steam Workshop, but there are a few on Nexus that look to be quite useful. My question before I dive in is are there any potential problems that I need to be aware of...[More]


What programming language or game engine is Hogwarts Legacies written in? What programming language or game engine is Hogwarts Legacies written in?

Posted On: July 20, 2023
I was curious as to what was used to make this game. What programming language or game engine was used to create Hogwarts Legacies? Question from user Shaun Roselt at stackexchange. Answer: ...[More]


Reach the compartment before it closes in Agent A: A Puzzle in Disguise Reach the compartment before it closes in Agent A: A Puzzle in Disguise

Posted On: July 9, 2023
In chapter 3, there is a button on the ground to the right of a platform in the center of the room. Clicking the button opened a compartment on the left side of the platform. The compartment keeps clo...[More]


Whats the difference between DirectX 10 and DirectX 9? Whats the difference between DirectX 10 and DirectX 9?

Posted On: May 29, 2023
In Civilization V, when starting the game, it offers me the option of using DirectX 10 or DirectX 9. Are there any graphics quality or performance gains present when using the DirectX 10 version? I kn...[More]


What are your favorite spells? What are your favorite spells?

Posted On: March 25, 2026
I love the Shadow Blade + Booming Blade combination.Question from user ChrisKatrev at BaldursGate3 at reddit.com.Answer:Spirit guardians, hold person - monster, and fireball.Answer from user SpikySwit...[More]


Using in game mod manager locks you out of achievements Using in game mod manager locks you out of achievements

Posted On: September 15, 2024
This is a major PSA for anyone thinking about using mods: If you still want to earn achievements, do not turn those mods on! Even if it's just for some hair or clothing. .As someone who has never used...[More]


How to activate all engines with a single button push? How to activate all engines with a single button push?

Posted On: January 20, 2023
In Kerbal Space Program (XBox One), my son likes to design rockets with multiple boosters. However, using the controller to separately activate each engine while launching usually results in launchpad...[More]


Dueling in Hogwarts Legacy Dueling in Hogwarts Legacy

Posted On: August 28, 2023
EDIT Thank you to everyone who commented with your advice! I admit I started getting frustrated and my bf had to take over as PVP isn't usually my thing in video games! (I usually do Minecraft, st...[More]


Do maps fill out while exploring underground? Do maps fill out while exploring underground?

Posted On: April 26, 2024
When a craftable map is held, exploring the world will fill out areas of the map with an image of the world surface. Will said map be updated the same way if held while exploring underground? Or will ...[More]