You are viewing a potentially older version of this package. View all versions.
dotlake-CheatManager-0.1.1 icon

CheatManager

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

Date uploaded 4 days ago
Version 0.1.1
Download link dotlake-CheatManager-0.1.1.zip
Downloads 328
Dependency string dotlake-CheatManager-0.1.1

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

CHANGELOG

0.1.1 (07-26-2026)

  • Update description

0.1.0 (07-26-2026)

  • Initial release