Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
You are viewing a potentially older version of this package.
View all versions.
| Date uploaded | 7 months ago |
| Version | 1.0.0 |
| Download link | Frudulus-RamdomValuables-1.0.0.zip |
| Downloads | 411 |
| Dependency string | Frudulus-RamdomValuables-1.0.0 |
This mod requires the following mods to function
README
REPO Config
Edit mod configs in-game!
Installation
-
Ensure you have BepInEx installed
- Download BepInEx from BepInEx Releases
- Extract it into your R.E.P.O. game directory
-
Download RepoConfig
- Download the latest release from Thunderstore
- Place the
RepoConfig.dllinsideBepInEx/plugins/
For Developers
Click To Expand
The currently supported ConfigEntry types are bool, int, float, and string
stringtypes currently requireAcceptableValueList<string>. (See "Setting Up Options" below)
Setting Up Ranges:
- Create a
ConfigEntry<float>orConfigEntry<int> - Bind it using
AcceptableValueRange<float>orAcceptableValueRange<int>:
floatEntry = Config.Bind("General", "Float Entry", 2f, new ConfigDescription("", new AcceptableValueRange<float>(2.5f, 10.5f)));
intEntry = Config.Bind("General", "Int Entry", 2, new ConfigDescription("", new AcceptableValueRange<int>(0, 100)));
Setting Up Options:
- Create a
ConfigEntry<string> - Bind it using
AcceptableValueList<string>:
gamemodeEntry = Config.Bind("General", "Gamemode", "Survival", new ConfigDescription("", new AcceptableValueList<string>("Creative", "Survival", "Adventure Mode")));
Hiding A Setting (Case-Sensitive)
- Create a
ConfigEntry - Bind it with a tag
HideFromREPOConfig:
floatEntry = Config.Bind("General", "Float Entry", 2f, new ConfigDescription("", null, "HideFromREPOConfig"));
Note
- Some mods may not have immediate support