You are viewing a potentially older version of this package. View all versions.
Rompedev-HTFModManager-1.0.0 icon

HTFModManager

Native in-game mod manager for How to Fish. View loaded BepInEx mods and edit their configuration directly from the Options menu.

Date uploaded a day ago
Version 1.0.0
Download link Rompedev-HTFModManager-1.0.0.zip
Downloads 237
Dependency string Rompedev-HTFModManager-1.0.0

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

HTF Mod Manager

A native in-game mod manager for How to Fish.

HTF Mod Manager adds a MODS tab directly to the game's Options menu, allowing you to view loaded BepInEx mods and edit supported configuration values without manually opening .cfg files.

Features

  • Native MODS tab integrated into the How to Fish Options menu.
  • Automatically discovers loaded BepInEx plugins.
  • Automatically discovers each mod's BepInEx configuration sections and entries.
  • Edit configuration values directly in-game.
  • Supports booleans, integer types, floating-point values, strings, enums, and supported BepInEx acceptable value lists/ranges.
  • Decimal values are displayed with up to 2 decimal places.
  • Uses sliders when a mod defines an AcceptableValueRange.
  • Saves edited values back to the mod's BepInEx config file.
  • Supports live enable/disable for cooperative mods that expose a [General] Enabled boolean config entry.
  • Scrollable configuration pages for mods with many settings.
  • HTF Mod Manager protects itself from being disabled through its own interface.

Generic mod support

HTF Mod Manager is designed to be generic. Mods do not need to be hardcoded into the manager.

Sections such as General, Spawn, Drops, Stats, or any other section are discovered directly from each plugin's BepInEx ConfigFile.

For the best integration, mod authors should use standard BepInEx Config.Bind(...) entries and define AcceptableValueRange or AcceptableValueList where appropriate.

Live configuration

Configuration changes are saved immediately to the corresponding BepInEx config file.

Whether a setting takes effect immediately depends on the mod being edited. Some mods react to config changes live, while others may require a restart or reload.

The enable/disable switch is only available for compatible mods that expose:

[General]
Enabled = true

Mods without this entry can still be viewed and configured normally.

Requirements

  • How to Fish
  • BepInEx 5.4.23.5

Installation

Install using a Thunderstore-compatible mod manager, or manually place the HTF Mod Manager DLL inside:

BepInEx/plugins/

Launch the game and open:

Options -> MODS

The MODS tab is injected automatically.

Version 1.0.0

Initial public release.

  • Native Options menu integration.
  • Automatic BepInEx plugin discovery.
  • Generic BepInEx config editor.
  • Automatic config section discovery.
  • Boolean, numeric, string and enum editing.
  • AcceptableValueRange and AcceptableValueList support.
  • Scrollable configuration UI.
  • Compatible live mod enable/disable support.
  • Automatic config saving.

CHANGELOG

Changelog

0.1.0

  • Initial diagnostic build.
  • Added Options/Settings UI architecture dump.
  • Added menu/settings GameObject hierarchy dump.
  • Added loaded BepInEx plugin discovery.
  • Added live ConfigEntry enumeration.
  • Added config-file-on-disk discovery.