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]

Slay The Spire: Does defeating minions reward extra gold? Slay The Spire: Does defeating minions reward extra gold?

Posted On: January 15, 2024
When fighting an Elite Enemy, they can sometimes summon minions to assist them in the fight. Defeating the Elite causes any surviving minions to run away. Will defeating the minions before defeating t...[More]


How do I use Triple Notch without triggering High Volley in Horizon Forbidden West How do I use Triple Notch without triggering High Volley in Horizon Forbidden West

Posted On: April 21, 2023
I have two skills from the Hunter tree: Triple Notch and High Volley. The weird thing is that as far as I can tell both are triggered by the same buttons, holding L2 and pressing R1. Sometimes when...[More]


In Hogwarts a broken moth left me at 99 percent In Hogwarts a broken moth left me at 99 percent

Posted On: March 2, 2023
Question from user SirSquidrift at HogwartsLegacyGaming at reddit.com. Answer: Dont. For me, it was a bugged butterfly chest that left me at 99%, but seriously: The game is great anyway. Yeah, i...[More]


How do I get back to the Dunes after entering the Steamworks on the Genocide Route? How do I get back to the Dunes after entering the Steamworks on the Genocide Route?

Posted On: April 9, 2024
I am doing a Genocide Route run of Undertale Yellow. After finishing the Dunes and entering the Steamworks, I realized I had accidentally missed an item that would help with the final boss. The Golden...[More]


Downloading windows version of steam games on a mac to copy over to a pc Downloading windows version of steam games on a mac to copy over to a pc

Posted On: June 9, 2023
I am sharing an internet connection with a few roommates and have a data cap. I would love to be able to use my MacBook to download games onto it, create Steam backups and install them on Windows. ...[More]


Can I have more than one of the same trading card? Can I have more than one of the same trading card?

Posted On: January 22, 2023
Steam now has trading cards. In order to get them, you're supposed to play specific games (currently there are only 6 games supported, but they've said more will come).However, it's only possible to ...[More]


Great Hall area Field Guide Pages Great Hall area Field Guide Pages

Posted On: July 31, 2023
Can anyone please help me find the last field guide page in the Great Hall area? It says I only have 23 out of the 24 for that area. I have used online guides and visited every single one of the page ...[More]


Patch 3 kinda sucks? Patch 3 kinda sucks?

Posted On: September 25, 2023
His Majesty has hair - just why? Raphael got a bad dye job (and basic horns?), as a Raphael simp - fuck this shit!. Shared stash. need I say more? Camera now focuses on Tav and you can't ...[More]


How do I get Marios hat back after pressing the Yellow Switch? How do I get Marios hat back after pressing the Yellow Switch?

Posted On: September 12, 2023
In the "abandoned" version 0.9 of B3313 (a ROM hack of Super Mario 64), I activated the Yellow Switch which caused Mario to lose his hat. Just like the original version of Super Mario 64, Ma...[More]


How do I survive the vampire attack during the Bloodchill Manor quest? UPDATED How do I survive the vampire attack during the Bloodchill Manor quest? UPDATED

Posted On: January 24, 2023
I've tried several times to live and not contract Sanguinare Vampiris (although, I've only been using Lifeblood, my dwarven warhammer enchanted with the health-point-steal and not the Flames s...[More]