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]

Are there enemies immune to quickhacks in Cyberpunk 2077? Are there enemies immune to quickhacks in Cyberpunk 2077?

Posted On: May 20, 2023
I'm pretty deep into the game, relying on quickhacks for damage so far, and I've yet to encounter enemies immune to quickhacks entirely. This seems to indicate that I don't need any other ...[More]


How can I keep monsters out of my nether regions? How can I keep monsters out of my nether regions?

Posted On: January 24, 2017
In order to find myself some nice lapis lazuli and get away from my current base, I'm building a little tunnel in the Nether to allow me to get into the midst of some fresh chunks fairly quickly.I hav...[More]


How do I use Artifacts in combat in Neverwinter? How do I use Artifacts in combat in Neverwinter?

Posted On: April 11, 2023
Sorry if this is an obvious question, but I can't find anything online that answers it. You can equip several artifacts on your character sheet. They talk about doing damage to your enemies. How d...[More]


How to setup Xbox Series S|X for a family? How to setup Xbox Series S|X for a family?

Posted On: March 7, 2023
I'm new to Xbox and have created an account for me and my children and have linked them to as a family. Will all members of the family be able to play if I login and setup the Xbox with my acco...[More]


Why is Ranrok so difficult to defeat is it my offence? Why is Ranrok so difficult to defeat is it my offence?

Posted On: August 31, 2023
His health bar barely goes down feels like it’s gonna take 3 weeks to defeat him. Question from user typicalking97 at HogwartsLegacyGaming at reddit. Answer: Even I was badly stuck ther...[More]


How can I play .dcr Shockwave games? How can I play .dcr Shockwave games?

Posted On: January 17, 2023
I found this set of old games, that I would really like to play, that use adobe shockwave. Specifically, "World Builder" from "game archive 3". I am using XAMPP as it said to do in...[More]


Halo 3: ODST Achievement - Killing things that are new and different is bad - good Halo 3: ODST Achievement - Killing things that are new and different is bad - good

Posted On: March 24, 2023
When I played through Halo 3: ODST I saw the "squids" and killed them when I saw them, and got a counter (1 of 10, 2 of 10, 3 of 10, etc) toward the achievement Killing things that are new a...[More]


Is there any reason to collect more money after repaying the companys debt? Is there any reason to collect more money after repaying the companys debt?

Posted On: April 16, 2024
In Pikmin 2, after you repay the company's debt of 10,000 Pokos, you are tasked with collecting the rest of the uncollected treasures. However, I noticed you can still earn money outside of treasures ...[More]


In Cookie Clicker how can I make profit from stocks? In Cookie Clicker how can I make profit from stocks?

Posted On: March 3, 2023
I am trying to use the stock minigame to make cookies. However, I am having trouble making a profit, because I don't know what patterns to look for in the prices. What should I look for when buyin...[More]


How do I kill these spiders in Hogwarts Legacy? How do I kill these spiders in Hogwarts Legacy?

Posted On: August 20, 2023
I’m trying to make my way to jackdaws rest. I’m going through the forbidden forest. And these spiders I keep running into seem to be impossible to beat with my noob status. Like they keep ...[More]