Carnometer
A damage meter HUD for Mycopunk showing total damage, rolling DPS, kills, and cores destroyed.
| Date uploaded | a month ago |
| Version | 2.0.1 |
| Download link | Sparroh-Carnometer-2.0.1.zip |
| Downloads | 77 |
| Dependency string | Sparroh-Carnometer-2.0.1 |
This mod requires the following mods to function
BepInEx-BepInExPack_Mycopunk
BepInEx pack for Mycopunk. Preconfigured and ready to use.
Preferred version: 5.4.2403Sparroh-SparrohUILib
Shared UI library for Sparroh Mycopunk mods. Provides themed widgets, HUD builders, windows, and resolution-aware layout.
Preferred version: 1.1.1README
Carnometer
A BepInEx mod for Mycopunk that adds a damage meter HUD tracking your combat performance during missions.
Features
- Total Damage & DPS: Tracks cumulative damage dealt and average damage per second over the mission
- Rolling Window DPS: Configurable recent-damage window (default 5 seconds) for short-term DPS
- Targets Killed: Kill count with kills-per-second rate
- Cores Killed: Separate counter for enemy cores destroyed
- Auto-Reset: Stats reset automatically when a new mission starts
- Configurable Position: Anchor the HUD anywhere on screen via config
- Hot-Reload Config: Config file changes are picked up without restarting the game
Getting Started
Dependencies
- Mycopunk (base game)
- BepInEx - Version 5.4.2403 or compatible
- .NET Framework 4.8
- HarmonyLib (included via NuGet)
Building/Compiling
- Clone this repository
- Open the solution file in Visual Studio, Rider, or your preferred C# IDE
- Build the project in Release mode to generate the .dll file
Alternatively, use dotnet CLI:
dotnet build --configuration Release
Installing
Via Thunderstore (Recommended):
- Download and install via Thunderstore Mod Manager
- The mod will be automatically installed to the correct directory
Manual Installation:
- Place the built
Carnometer.dllin your<Mycopunk Directory>/BepInEx/plugins/folder
Executing program
The mod loads automatically through BepInEx when the game starts. Check the BepInEx console for loading confirmation messages.
Configuration
Access mod settings through the BepInEx configuration file at <Mycopunk Directory>/BepInEx/config/sparroh.carnometer.cfg. Options include:
| Setting | Default | Description |
|---|---|---|
EnableDamageMeterHUD |
true |
Enable or disable the damage meter |
DPSWindowSeconds |
5 |
Time window (seconds) for rolling DPS calculation |
CarnometerAnchorX |
0.15 |
X anchor position (0–1) |
CarnometerAnchorY |
0.95 |
Y anchor position (0–1) |
Help
- Mod not loading? Verify BepInEx is installed correctly and check console logs for errors
- HUD not appearing? Ensure
EnableDamageMeterHUDis true and you are in a mission with a local player - Stats not resetting? Stats reset when a new mission HUD spawns; leave and re-enter a mission if needed
- Position wrong? Adjust
CarnometerAnchorX/CarnometerAnchorYin the config file
Authors
- Sparroh
License
This project is licensed under the MIT License - see the LICENSE file for details
CHANGELOG
Changelog
2.1.0
- Refactor
- Split into two independent HUDs: Damage HUD and Kill HUD
- Separate enable toggles, positions, and colors for each HUD
- Kill HUD defaults slightly below the damage HUD so both are visible on first load
- Config keys renamed (
Enable Carnometer→Enable Damage HUD/Enable Kill HUD, etc.)
2.0.1
- Recreate UI after returning to the main menu so the HUD loads correctly on the next mission
2.0.0
- Initial standalone release (split from ExpandedHUD)
- Damage meter HUD with total damage, rolling DPS, kills, and cores destroyed
- Configurable enable toggle, DPS window, HUD anchor position, and value color
- Auto-reset on mission start
- Integration with SparrohUILib and optional HudRepositionAPI support
1.1.0
- HUD visibility toggle with F5 key
- HUD positioning at reticle location
- Kill-per-second and core-kill-per-second statistics
- Enhanced UI with TextMeshPro text components
- Proper mission-end reset functionality
1.0.1
- 5-second rolling damage window for DPS calculation
- Configurable DPS window duration via BepInEx config
1.0.0
- Initial release packaging (MinVer, thunderstore.toml, LICENSE, CHANGELOG)