AdvancedREPO Config

AdvancedREPO Config is a configuration framework for the R.E.P.O. game that enables the synchronization of BepInEx settings from the host to all connected clients.

How to Use (for Developers)

To synchronize a config entry, simply append .Sync() to it:

StaminaPerUpgrade = configFile.Bind<int>(
new ConfigDefinition(“Stamina”, “Upgrade stamina”),
10,
new ConfigDescription(“How much stamina every upgrade gives.”, new AcceptableValueRange<int>(0, 100)))
.Sync();

This returns a ConfigField<int>, and during gameplay, the synced value can be accessed via .Value. Synchronization occurs automatically at level start.

To install, unzip the archive to REPO\BepInEx.

Requirements

AdvancedREPO Utils

AdvancedREPO Patcher

Created by PotatoePet

Download

How to Install

To install AdvancedREPO Config you need to have BepInEx. If you have any trouble installing mods for REPO, follow this guide:

R.E.P.O. Mods Installation

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top