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]

How can I earn dungeon achievements in the regular version of Cookie Clicker? How can I earn dungeon achievements in the regular version of Cookie Clicker?

Posted On: September 13, 2023
There are four shadow achievements in Cookie Clicker which involve dungeons:. Getting even with the oven: Defeat the Sentient Furnace in the factory dungeons. Now this is pod-smashing: Defeat th...[More]


Will Minecraft librarian villagers sell Mending books at tier 1? Will Minecraft librarian villagers sell Mending books at tier 1?

Posted On: June 5, 2023
I'm currently interested in finding a librarian villager that sells Mending enchanted books, since I have been fishing forever and it's just too slow. My logic is once I find a single Mendi...[More]


Cat Challenge in Hogwarts Legacy Cat Challenge in Hogwarts Legacy

Posted On: June 25, 2023
I wish there was a challenge where you could go around and pet all the cats in the game. Do you pet the cats or run by them? Question from user oogieboujie at HogwartsLegacyGaming at reddit. Ans...[More]


Will they add romance to Hogwarts legacy? Will they add romance to Hogwarts legacy?

Posted On: July 22, 2023
The material is there, quest lines and body movements and such but they never actually do date. It is weird how they’re like 16-17 and NOT romancing. Plus it’s clear Poppy has a thing for ...[More]


What does the Runescape Dismiss familiar button do when it is a pet? What does the Runescape Dismiss familiar button do when it is a pet?

Posted On: May 14, 2023
What happens when you click on the "Dismiss familiar" button when it's not a summon but a pet? By that I mean the rightmost button in: . Does the pet return to inventory? Does it go a...[More]


What do Steam OS minimum system requirements guarantee in terms of playability? What do Steam OS minimum system requirements guarantee in terms of playability?

Posted On: September 25, 2023
I want to buy a game on Steam and my device meets the minimum system requirements. Am I guaranteed that the game will be playable? Question from user Francesco Iapicca at stackexchange. Answe...[More]


Can I bind a key to a macro without applying it on an action button? Can I bind a key to a macro without applying it on an action button?

Posted On: January 24, 2023
So far all I can do is to create a macro, place it on an action button, and make sure that this action bar has a key bound to it. But now I'm running out of action buttons.I would like to bind a key (...[More]


What are your worst dice roll experiences? What are your worst dice roll experiences?

Posted On: September 27, 2023
Last night, I was lockpicking something with 20 DC. I have +12 in bonuses and the 1d4 guidance roll. So essentially, on any roll, I have +13-17 bonus, which means the dice would have to roll a 6 or lo...[More]


In Hogwarts, Am I Wendelin the weird? In Hogwarts, Am I Wendelin the weird?

Posted On: June 11, 2023
Is it werid to have too many profiles because well…er…I have 20 profiles just for my own characters each with their own unique backstory am just asking do you think it’s weird to h...[More]


What order are Pikmin retrieved from an Onion? What order are Pikmin retrieved from an Onion?

Posted On: March 31, 2024
When I retrieve Pikmin from an Onion at the start of a day, I noticed that the Pikmin will often be at different stages of maturity. Some will have flowers, while others will still be leaves. This mak...[More]