The BepInEx console will not appear when launching like it does for other games on Thunderstore. This is normal (and helps prevent crashes during startup). You can turn it back on in your BepInEx.cfg file.

ChallengerPEAK
Adds support for additional challenges to be added to your runs
Date uploaded | 4 days ago |
Version | 0.0.1 |
Download link | Raspberry1111-ChallengerPEAK-0.0.1.zip |
Downloads | 564 |
Dependency string | Raspberry1111-ChallengerPEAK-0.0.1 |
This mod requires the following mods to function

BepInEx-BepInExPack_PEAK
BepInEx pack for PEAK. Preconfigured and ready to use.
Preferred version: 5.4.2403README
Challenger PEAK
Adds optional challenges that can be enabled to increase the difficulty of your runs. These are additive (meaning you can enable as many as you choose) and exist alongside the vanilla ascent system.
(Yes i know the UI isn't the greatest at the moment; we'll just call it "functional")
This mod should mostly work in multiplayer, but please do report any issues on the GitHub if possible. People joining halfway through a run will correctly receive the list of challenges to their game client
This mod requires both the client and server to have it. Technically, a server-side only challenge could be added, however, all the built-in challenges do require both sides to have it installed.
Existing Challenges
Fatal Damage - All injury damage (from the Scout Master or Falling) is permanent
No Cooking - Everything gets destroyed when cooked
No Trace - Anything that can be placed will spawn incinerated
One Flare - The only flare spawns in the plane. Good luck on Ascent 4+
Installation
Automated
It is recommended to use Gale Mod Manager as it fully supports auto-downloading and running PEAK mods
Simply search for ChallengerPEAK
and hit download
Manual
- Install BepInEx
- Unzip the mod into the
BepInEx/plugins
folder
Developers
These challenges can (in theory, it hasn't been fully tested yet) by other mods
The ChallengerPeakPlugin
class exposes a method called registerChallenge
that accepts an instance of a type derived from the Challenge
abstract class.
The only requirements to derive Challenge
are
- An ID
- A name
- A description
Initialize
method - Called once theMapHandler
is started (once the run loads into the island)Cleanup
method - Called once theMapHandler
is destroyed (the map is unloaded)
Do NOT register any Harmony
matches before the Initialize
method is called (that are specific to your challenge), and make sure to unpatch them in the Cleanup
method
You can also look at the existing challenges in this mod's github repo
In the future, challenges might also be able to add badges that would appear at the end game infocard (These would not appear on the player's sash)
CHANGELOG
Changelog
[0.0.2] - 2025-06-26
Added
- Rule 0 challenge: Scoutmaster targets the closest person if someone dies
Changed
- Switch to Peak mod template
- Networking rewrite
[0.0.1]
Initial Release