

PeakCloudAPI Emulator
CloudAPI_Emulator is a mod that allow you to create custom auth server for the game allowing you to use custom LevelIndex, Messages etc...Details
π§ Peak Version Bypass
A simple mod that bypasses the game's version check by redirecting it to a custom JSON URL β useful for emulating server responses or skipping version restrictions.
π¦ Features
- β Redirects the game's version check to a custom URL
- π Reads the URL from a config file:
CloudAPI_Emulator.txt
- π Falls back to a default CloudAPI JSON if config is missing or empty
- π§ͺ Useful for testing or custom server emulation
π οΈ Installation
πΉ Via Thunderstore (Recommended)
- Install using a mod manager like Thunderstore Mod Manager or r2modman.
- Search for "Peak Version Bypass" and click Install.
πΈ Manual Install
- Download the
.zip
file from the Thunderstore mod page. - Extract contents into your gameβs root folder.
- Folder structure should look like this:
Peak/
βββ BepInEx/
β βββ plugins/
β βββ NekogiriMod.dll
βββ BepInEx/config/
β βββ CloudAPI_Emulator.txt
βοΈ Configuration
BepInEx/config/CloudAPI_Emulator.txt
Put the raw URL to your version JSON (e.g., hosted on GitHub):
https://raw.githubusercontent.com/YourUsername/YourRepo/main/version.json
- If the file is missing or empty, the mod falls back to a default hardcoded GitHub URL.
- The request is done using UnityWebRequest and parsed as JSON.
π JSON Response Format
Your JSON file must follow this format:
{
"VersionOkay": true, //If edited to false, the game will ask you to update the game, so it's useless
"HoursUntilLevel": 19, //Can be edited
"MinutesUntilLevel": 46, //Can be edited
"SecondsUntilLevel": 31, //Can be edited
"LevelIndex": 66, //Can be edited
"Message": "Alpineβs back in rotation! Weβre still looking into issues with performance and achievements, thank you for your patience" //Can be edited
}
This structure emulates the response from the original API.
π€ Author
Made with β€οΈ by Kirigiri
π License
You are free to use, modify, and redistribute this mod.