dotlake-CheatManager icon

CheatManager

Adds ability to allow cheats without blocking any kind of progression or stat saving, while still disabling leaderboard submissions.

Last updated 10 hours ago
Total downloads 43
Total rating 0 
Categories Libraries Misc Tweaks Leaderboard Legal
Dependency string dotlake-CheatManager-0.1.1
Dependants 0 other packages depend on this package

This mod requires the following mods to function

BepInEx-BepInExPack-5.4.2100 icon
BepInEx-BepInExPack

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

Preferred version: 5.4.2100

README

Adds ability to allow cheats without blocking any kind of progression or stat saving, while still disabling leaderboard submissions.

Also features an API for mod authors to enable or disable cheating and leaderboard submissions.


For Players

After installing the mod, set Allow Cheats to true in the config to use cheats without being marked as cheated. Leaderboard score submissions are blocked automatically when cheats are enabled. If installed manually, the config is located in White Knuckle\BepInEx\config or you can manage it through your mod manager.

You can also disable leaderboard submissions independently by enabling Disable Leaderboard in the config regardless if cheats are enabled or not.

Config Options

Option Default Description
Allow Cheats false Enable cheats without being marked as cheated
Disable Leaderboard false Block leaderboard submissions regardless of cheats

For Mod Developers

The mod provides a simple API for mod authors to enable or disable cheating and leaderboard submissions. This allows developers to easily enable or disable cheating/leaderboards at runtime.

API Reference

Method Description
Manager.SetCheated(pluginId) Set your mod as cheating
Manager.UnsetCheated(pluginId) Unset your mod as cheating
Manager.BlockLeaderboard(pluginId) Block leaderboard submissions for your mod
Manager.UnblockLeaderboard(pluginId) Unblock leaderboard submissions for your mod