Shared packs let a host bundle multiple mods into a single downloadable pack and distribute them to players using a short room code. Players enter the code in Victor Launcher, which fetches the pack manifest, verifies its authenticity, and downloads each DLL directly into the install queue — no manual file sharing required.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/stevensonhouset5-sys/Victor-Launcher/llms.txt
Use this file to discover all available pages before exploring further.
- Host
- Player
Creating and publishing a room
A room stores your mod pack on the Victor Launcher web manager. Once published, anyone with the room code can download the exact set of DLLs you uploaded.Open the web manager
Go to https://ateasvictor.github.io/Victor-Launcher/ in your browser.
Create a room
Give your room a name, a room code, and a password. The room code is what you share with players, so choose something short and memorable.Room code rules:
- Alphanumeric characters, dashes (
-), and underscores (_) only - Maximum 12 characters
- Case-insensitive — Victor Launcher normalizes it to uppercase automatically
Upload your DLLs
Add the mod DLL files you want to include in the pack. The uploaded files form a draft of your room.
Publish the pack
Click Save Room Pack to publish the draft. The pack is now live and available to anyone who enters your room code.
What happens during a download
When you click Download Pack, Victor Launcher runs the following steps automatically:- Sends the room code to the Supabase Edge Function at the
room-manifestendpoint (falls back to theget_room_manifestRPC for legacy backends). - Verifies the RSA/SHA-256 signature on the returned manifest.
- Checks that the manifest has not expired.
- Validates that every file URL belongs to the same host as the configured Supabase project.
- Downloads each DLL and checks its SHA-256 hash and file size against the values in the manifest.
- Saves each file to
BepInEx/mod-imports/<ROOM-CODE>/using the file name from the manifest.