0 of 0

File information

Last updated

Original upload

Created by

El Ha

Uploaded by

Zorkaz

Virus scan

Safe to use

Tags for this mod

About this mod

Part 3 in this series.

Use these programs to launch the CK or Fallout London in order to keep your game safe.

Automatically swaps between the Fallout4.esm and Fallout4Stripped.esm depending on if you're using the Creation Kit or Fallout London.

Permissions and credits
Donations
Only for people who mod Fallout London

Custom Creation Kit and Fallout London Launcher for Modders


Features:

Use these programs to launch the CK or Fallout London in order to keep your game safe

These two programs (actually .bat files) automatically rename the Fallout4.esm and Fallout4Stripped.esm depending on whether you want to use the Creation Kit play Fallout London.


Installation:

Put both .bats into your Fallout 4 folder.

Make sure you have the Fallout4Stripped.esm in your data folder.



Further explanation:


The LHCustomCreationKitLauncher.bat automatically renames the Fallout4.esm to Fallout4Or.esm and renames Fallout4Stripped.esm to Fallout4.esm

LHCustomFalloutLondonLauncher.bat checks if the .esm has the correct filesize otherwise restores the original Fallout4.esm and renames the other one.


Code:


LHCustomCreationKitLauncher.bat

@echo off
Title Creation Kit Launcher Folon
SETLOCAL enabledelayedexpansion


if exist Data\Fallout4Stripped.esm (
    ren Data\Fallout4.esm Fallout4Or.esm
    TIMEOUT /T 3
    ren Data\Fallout4Stripped.esm Fallout4.esm
    TIMEOUT /T 3
    Start CreationKit.exe
    ) else (
        Start CreationKit.exe
        )
)

LHCustomFalloutLondonLauncher.bat

@echo off
Title CustomFalloutLondonLauncher
SETLOCAL enabledelayedexpansion
Set "MyBatchFile=%0"
Set "MyFile=Data\Fallout4.esm"
echo(
echo This batch file !MyBatchFile! has a size of %~z0 bytes
echo(


for %%A in ("%MyFile%") do (
    set "Size=%%~zA"
    echo The file "!MyFile!" has a size of !size! bytes
    if !size! == 330745373 (
        start f4se_loader.exe & exit
        ) else (
    ren Data\Fallout4.esm Fallout4Stripped.esm
    TIMEOUT /T 3
    ren Data\Fallout4Or.esm Fallout4.esm
    Start LHCustomFalloutLondonLauncher.bat
)
)