MysticTeam-TeammateHealthHUD icon

TeammateHealthHUD

Client-side teammate health, name, and death-state HUD for R.E.P.O.

Last updated 9 hours ago
Total downloads 184
Total rating 1 
Categories Mods Client-side AI Generated Quality Of Life
Dependency string MysticTeam-TeammateHealthHUD-1.1.0
Dependants 0 other packages depend on this package

This mod requires the following mods to function

BepInEx-BepInExPack-5.4.2305 icon
BepInEx-BepInExPack

BepInEx pack for Mono Unity games. Preconfigured and ready to use.

Preferred version: 5.4.2305

README

TeammateHealthHUD

A lightweight, client-side teammate health HUD for R.E.P.O.

Features

  • One compact HUD card per teammate
  • Player names from R.E.P.O.'s visible Photon nickname
  • Current and maximum HP with smoothly animated bars
  • Health colors for healthy, medium, and low HP
  • A red, angled DEAD stamp that clears correctly after a revive
  • Optional portrait markers with an initial fallback (disabled by default)
  • R.E.P.O.-styled neon health readouts and segmented health bars
  • Automatically hidden in the main menu; shown only after a run starts
  • Automatic handling of joins, disconnects, revives, and scene changes
  • F8 show/hide shortcut by default
  • Resolution-independent layout for 1080p, 1440p, 4K, and other aspect ratios
  • BepInEx configuration with live Configuration Manager support

Client-side only

Only the player who wants the HUD needs to install this mod. The host and other players can remain completely vanilla.

TeammateHealthHUD does not add RPCs, packets, synchronized values, authority changes, or gameplay-changing patches. On the verified R.E.P.O. build, every client already receives teammate HP, maximum HP, death, and revive updates through the game's own Photon RPCs. This mod only reads the resulting local PlayerAvatar state and renders a local overlay. Its only Harmony hook is a postfix on GameDirector.Update that advances the HUD and never alters the game's method, arguments, or state.

Installation

Thunderstore Mod Manager / r2modman

  1. Install TeammateHealthHUD for R.E.P.O.
  2. Launch the game through the mod manager.

The required BepInEx pack is installed automatically.

Manual

  1. Install BepInEx-BepInExPack-5.4.2305 or newer compatible BepInEx 5 package.
  2. Copy TeammateHealthHUD.dll into BepInEx/plugins/TeammateHealthHUD/.
  3. Launch R.E.P.O.

Configuration

The config file is created at BepInEx/config/com.juanma.teammatehealthhud.cfg after the first launch.

Important options include:

  • Enabled, ShowSelf, ShowHealthNumbers, ShowHealthBar, ShowAvatar, and ShowDeadPlayers
  • DeadText for DEAD, MUERTO, or another label
  • ToggleKey (F8 by default)
  • Anchor, OffsetX, OffsetY, Scale, and Spacing
  • HTML hex colors for healthy, medium, low, dead, and name colors
  • PanelOpacity, SmoothHealthAnimation, and HealthLerpSpeed
  • DebugLogging, which records detailed scene, Canvas, roster, player-card, and two-second heartbeat diagnostics

All entries use normal BepInEx config types, so a compatible BepInEx Configuration Manager can edit them without being a required dependency.

Configuration is hot-reloaded. Pressing Save changes in an external BepInEx/Thunderstore config editor applies the new values in-game within approximately half a second; R.E.P.O. does not need to be restarted.

Verified game data

This release was built and inspected against Steam build 23363152 (R.E.P.O. release line 0.4.4.3, Unity 2022.3.67f2). It uses:

  • SemiFunc.PlayerGetList() / GameDirector.PlayerList for the current player roster
  • PlayerAvatar.playerHealth with PlayerHealth.health and PlayerHealth.maxHealth
  • PlayerAvatar.deadSet for the real death state, with HP at zero as an additional safeguard
  • PlayerAvatar.isLocal to hide the local player by default
  • SemiFunc.PlayerGetName() for the displayed in-game name
  • PhotonView.ViewID as the stable per-avatar HUD key

The game itself sends UpdateHealthRPC, PlayerDeathRPC, and ReviveRPC to vanilla clients. TeammateHealthHUD never calls those methods.

Known limitations

  • The inspected gameplay avatars do not expose a reusable per-player portrait texture or already-loaded Steam avatar. The HUD therefore uses a clean initial marker. It deliberately does not make Steam web requests or create extra portrait cameras.
  • Multiplayer behavior must be verified in a real two-client session after game updates. Enable DebugLogging if an update changes an internal binding.
  • Mods that replace the game's player avatar or health classes may require a compatibility update.

Support

When reporting a problem, include the BepInEx log and a two-second debug snapshot with DebugLogging = true.