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
Created by PotatoePet







