


DescriptiveWeaponStatShower auto-generates weapon stats and integrates them into the description text, with additional features for rundown developers with heavily custom weapons. The gear description text is now a button, click on it to change tabs.
DISCLAIMER: This mod is a fork of DacreDOLOLO's WeaponStatShower. It is a full recompile with a +X version bump, so both mods can be present in your profile. BepInEx will load the newest version. By default, enemy kill points are set to "NONE" to save space for the weapon descriptions.
Please contact Amorously or Dinorush for anything regarding this fork.
DescriptiveWeaponStatShower allows rundown developers to add their own custom tabs to the description in addition to the basic description tab and autogenerated stat tabs. The Custom folder is autogenerated after launching and supports LiveEdit (close the loadout window to load changes). There are 2 files:
This file must be strictly named as such and must exist.
{
"PreferHideStats": false, // Remove the stats tab, unless the user forces it in their config.
// Useful if you plan to maintain stats yourself, especially with ExtraWeaponCustomization.
"DefaultDescriptionIndex": 0 // Which tab the gear's normal description resides in.
}
This is a folder that can contain any number of json files with any name. Each contains a list of custom tab objects. The template generates as:
[
{
"ArchetypeID": 0, // The Archetype to add descriptions to.
"GearCategoryID": 0,// The Gear Category to add descriptions to, if no Archetype exists.
// Use this for non-sentry tools and melees.
"Headers": [], // Header text for each tab, replacing the gear name text.
// Empty ("") and null (null) values become the gear's name.
// If shorter than Descriptions, the remaining headers are autofilled with the gear's name.
"Descriptions": [], // The description for each tab.
"DescriptionIndexOverride": -1, // Overrides which index the gear's normal description resides in.
"Name": "" // Unused value that exists purely for file organization.
},
{
"ArchetypeID": 0,
"GearCategoryID": 0,
"Headers": [
"",
"Third Tab"
],
"Descriptions": [
"Custom tab for testing",
"Another custom tab under the third tab"
],
"DescriptionIndexOverride": -1,
"Name": "Filled Example"
}
]
WeaponStatShower is a mod that allows player to see the stats of a selected weapon and which enemy they can kill with 1 shot and where it does kill. This mod is compatible with WeaponCustomizer and modded weapons (as far as I know).
This mod generates the description of the weapons from scratch so even if you have a custom weapon it will be automatically update the UI. The mods calculate the damage of the weapon and show which Sleeper can be killed in 1 shot and from what position. You can enable which enemy to show from the configuration file located in:
and just follow the instructions.
You don't need to reload the game to see the changes, just open/close the inventory or click on the weapon type tabs.

以记事本方式打开“BepInEx/config/WeaponStatShower.cfg”文件 把倒数第二段最后一行的Language = English改为Language = Chinese,即可切换为中文。 祝你游戏愉快
This is my first mod so huge thanks to GTFO_TheArchive which this mod is based on a specific feature that I wanted as a standalone, then modified.