Victor Launcher confines all of its activity to theDocumentation 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.
BepInEx/ directory inside your Among Us installation folder. It never writes outside that tree. The paths below are relative to your Among Us folder (the folder that contains Among Us.exe).
Directory tree
Directories
BepInEx/plugins/
Active mods. BepInEx scans this directory on startup and loads every .dll it finds. When you enable a mod in Victor Launcher, it moves the file here from plugins-disabled/. When you install a new mod, files land here directly (after being staged in mod-imports/).
BepInEx/plugins-disabled/
Disabled mods. Victor Launcher creates this directory automatically. Files here are ignored by BepInEx at startup. Disabling a mod moves its .dll from plugins/ to this directory; enabling it reverses the move.
BepInEx/mod-imports/
The staging area. When you select a DLL to import via the launcher file picker, Victor Launcher copies it here first. On the next game restart, the launcher moves staged files into plugins/ and clears this directory. The state snapshot records staged files under the "staged" key.
BepInEx/victor-backups/
Automatic backups. Before overwriting an existing file during a room-pack install, Victor Launcher copies the original here. Each backup session gets its own subdirectory named with a UTC ISO 8601 timestamp (for example, 20240601T200000Z/). The original relative path is preserved inside that subfolder so you can restore files manually if needed.
BepInEx/config/
Configuration and state. Victor Launcher reads and writes two files here.
Files
BepInEx/config/victor-launcher-state.json
A state snapshot written by Victor Launcher after every mod operation. It records which DLLs are active, disabled, and staged at the time of the last write.
| Field | Description |
|---|---|
generatedAtUtc | UTC timestamp of the last snapshot write. |
active | Relative paths (from plugins/) of all active DLLs. |
disabled | Relative paths (from plugins-disabled/) of all disabled DLLs. |
staged | Relative paths (from mod-imports/) of all staged DLLs. |
BepInEx/config/com.tate.amongus.starterplugin.cfg
The BepInEx configuration file for Victor Launcher. This is where you set the Supabase URL, the signing public key, and other runtime options. See BepInEx configuration for all available keys.
The group system
Victor Launcher organizes mods into groups based on subdirectory structure insideplugins/ and plugins-disabled/.
-
Loose DLLs — any
.dllthat sits directly at the top level ofplugins/orplugins-disabled/(not inside a subdirectory) is classified as a loose DLL. These appear in the launcher UI under the label Loose DLLs. -
Named groups — any
.dllinside a subdirectory ofplugins/orplugins-disabled/belongs to a group named after that subdirectory. The launcher replaces path separators with/when displaying the group name (for example,FridayPack/ModA.dllbelongs to the group FridayPack).