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]

What happens if the guards begin a search while you have the VIP Pass on Rock the Cradle? What happens if the guards begin a search while you have the VIP Pass on Rock the Cradle?

Posted On: October 24, 2023
If you have the VIP Pass on Rock the Cradle, all private areas of the heist essentially become public areas. Cameras and guards do not detect you in casing mode in the VIP area of the nightclub, or in...[More]


How does Grabby Hand work in Peglin? How does Grabby Hand work in Peglin?

Posted On: August 24, 2023
The description for the Grabby Hand relic states:. Flying enemies are attacked horizontally, allowing for improved targeting. What does "attacked horizontally" mean? How does Grabby Ha...[More]


What does disliking a player do in DOTA 2? What does disliking a player do in DOTA 2?

Posted On: October 18, 2023
If I click "dislike player" after a match, what does that do? Question from user nightblade9 at stackexchange. Answer: Dota 2 Summer 2023 Patch notes state:. Additionally, we&rsq...[More]


How do you gain treasure from fishing? How do you gain treasure from fishing?

Posted On: March 14, 2024
I know that you can gain treasure from fishing, (Saddles, enchanted books, enchanted bows etc.) but what is the criteria for collecting treasure? Does fishing in a specific biome count? Also, what are...[More]


Where should I sell exploration data for the most benefit? Where should I sell exploration data for the most benefit?

Posted On: June 15, 2023
I spend a LOT of time outside the bubble. (Both the Solar bubble and Colonia area.) Sometimes, I'll be out for months at a stretch and come back with tens of millions of CR worth of exploration da...[More]


Is there a way to easily spot unopened chests in Genshin Impact? Is there a way to easily spot unopened chests in Genshin Impact?

Posted On: February 20, 2023
I was looking at the Genshin Impact trophies I had left, and most of them are 'Open 100, 200, 300, 400 chests in the Area'. I did not note which chests I did or not open; so having a map th...[More]


In the Xenoblade Chronicles 3, Can characters with more HP survive falling from a greater height? In the Xenoblade Chronicles 3, Can characters with more HP survive falling from a greater height?

Posted On: March 11, 2023
I noticed the characters in my party can have vastly different amounts of HP depending on their class. My Soulhacker has 1,617 HP while my Lost Vanguard has 8,450 HP. If I switch to a character wit...[More]


They just dump Marcus' bitchass corpse outside They just dump Marcus' bitchass corpse outside

Posted On: November 17, 2025
Question from user ryumaruborike at BaldursGate3 at reddit.com.Answer:https: - - preview.redd.it - l6o2hzyntq1g1.png?width=1920&format=png&auto=webp&s=38a8a5b5c8f4853dc4bb52ee7e12fcc216a8c33e.Just wan...[More]


In Hollow Knight, What is the creature that appears after beating False Knight? In Hollow Knight, What is the creature that appears after beating False Knight?

Posted On: February 16, 2023
Immediately after beating False Knight in Steel Soul mode this thing popped up and started scurrying away slowly: .What is it? I seem to be able to knock it around, but once I stop it quickly gets up ...[More]


Misadventures of P.B Winterbottom leaderboards Misadventures of P.B Winterbottom leaderboards

Posted On: March 24, 2023
The Misadventures of P.B Winterbottom is absolutely brilliant (if maybe a little short). Anyway, now that I've finished it, I'm in the process of going through the bonus shorts (levels), and a...[More]