This PowerShell script installs a selection of mods for LethalCompany.
It also includes the installation of BepInEx, a game patcher / plugin framework for Unity.
You don't need to install anything on your Windows system to run this script.
To run ths script, follow these steps:
-
Open a PowerShell console.
-
Copy this one-liner command in the console:
Set-ExecutionPolicy Bypass -Scope Process -Force; $Script = "$env:TEMP\LethalCompanyModder.ps1"; iwr "https://raw.githubusercontent.com/Indaclouds/LethalCompanyModder/main/LethalCompanyModder.ps1" -OutFile $Script; & $Script
-
Execute it.
It's as simple as that! 😄
If needed, you can pass some parameters to the script:
& .\LethalCompanyModder.ps1 <parameters>
Install mods from a preset maintained by us on GitHub:
& .\LethalCompanyModder.ps1 -Preset "Hardcore"
Install mods from a preset defined in a file on your system:
& .\LethalCompanyModder.ps1 -Preset "MyPreset" -File "./path/to/mods.json"
Install mods, including those required only by the game host:
& .\LethalCompanyModder.ps1 -ServerHost
If you need to upgrade your mods, re-run the script with the Upgrade
parameter.
& .\LethalCompanyModder.ps1 -Upgrade
Mods and dependencies will be re-installed with the latest version but keep the configuration.
BepInEx
directory is backup-ed in the game directory as BepInEx_Backup.zip
.
If you would like to re-install everything, run the script with the Force
parameter.
& .\LethalCompanyModder.ps1 -Force
BepInEx
directory is backup-ed in the game directory as BepInEx_Backup.zip
.
By default, the script automatically search for the Lethal Company
directory on your system.
However, you can define the path to the game directory with the GameDirectory
parameter.
& .\LethalCompanyModder.ps1 -GameDirectory "C:\Path\to\Lethal Company"
This is the selection of mods to be installed when no curated or custom preset is specified by the user.
- MoreCompany by notnotnotswipez
- LateCompany by anormaltwig
- ShipLoot by tinyhoot
- HealthMetrics by matsuura
- TerminalApi by NotAtomicBomb
- Terminal Clock by NotAtomicBomb
- LBtoKG by Zduniusz
- AlwaysHearActiveWalkies by Suskitech
- MoreCompany by notnotnotswipez
- LateCompany by anormaltwig
- ShipLoot by tinyhoot
- LBtoKG by Zduniusz
- LC API by 2018
- Brutal Company by 2018
- SuperLandmine by phawitpp
- AlwaysHearActiveWalkies by Suskitech
- MoreCompany by notnotnotswipez
- LateCompany by anormaltwig
- ShipLoot by tinyhoot
- HealthMetrics by matsuura
- TerminalApi by NotAtomicBomb
- Terminal Clock by NotAtomicBomb
- LBtoKG by Zduniusz
- AlwaysHearActiveWalkies by Suskitech
- Solos Bodycams by CapyCat
- More Suits by x753
If you would like to check your files after the installation, you can find them in the game directory.
The mods are located under the BepInEx\plugins
directory.