Skip to content

Install on Windows

Prerequisites

To install LeviLamina, you need one of the following Windows versions:

  • Windows 10
  • Windows 11
  • Windows Server 2019
  • Windows Server 2022

To run Bedrock Dedicated Server for Minecraft, you need to install the following software:

Installation Methods

You can install LeviLamina in different ways, depending on your needs:

  • You can install via lip, for ease of installation and upgrade tasks. This is the recommended approach.
  • You can download the modules and install them manually and manage upgrades completely manually. This is useful in situations such as installing LeviLamina on air-gapped systems with no access to the internet.

Installing via lip

  1. Install lip by referring to the lip documentation.
  2. Begin by creating a directory for your Minecraft server and navigating into it:
    Bash
    1
    2
    mkdir myserver
    cd myserver
    
  3. Then, install LeviLamina (bundled with Bedrock Dedicated Server) using lip:
    Bash
    1
    2
    3
    4
    5
    # Install the latest version
    lip install github.com/LiteLDev/LeviLamina
    
    # Install a specific version (replace x.y.z with the desired version)
    lip install github.com/LiteLDev/LeviLamina@x.y.z
    
  4. Launch your server by running:
    Bash
    1
    ./bedrock_server_mod.exe
    

Find the available version numbers in the releases.

If you want to upgrade LeviLamina, run the following command:

Bash
1
2
3
4
5
# Update to the latest version
lip update github.com/LiteLDev/LeviLamina

# Update to a specific version (replace x.y.z with the desired version)
lip update github.com/LiteLDev/LeviLamina@x.y.z

Warning

For optimal data security, do not update LeviLamina in the same directory. Instead, install the new version in a separate folder, then copy over your worlds directory and update your configuration as needed.

Installing manually

Download required files

  1. Download the LeviLamina
  2. Download the required Preloader according to the tooth.json of specific version of LeviLamina
  3. Download the latest PeEditor
  4. Download the required bedrock-runtime-data according to the tooth.json
  5. Download the latest CrashLogger
  6. Download the Bedrock Dedicated Server from the Minecraft Wiki according to Supported Versions
  7. (Optional) Download the levilamina-loc according to the tooth.json

Install LeviLamina

  1. Create a directory for your Minecraft server and switch to that directory:
  2. Decompress the downloaded files according to the following structure(Some files or folders not listed here):
    Text Only
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    bedrock_runtime_data
    bedrock_server.exe
    PeEditor.exe
    PreLoader.dll
    plugins/
        LeviLamina/
            CrashLogger.exe
            LeviLamina.dll
            LeviLamina.pdb
            manifest.json
            lang/
                en_US.json
                zh_CN.json
    
  3. Run the following command to generate bedrock_server_mod.exe:
    PowerShell
    1
    .\PeEditor.exe -mb
    

Finding Mods

Before adding mods, explore your options. The best source is Bedrinth, although you can discover many elsewhere around the web.

Installing Mods

Most mods, especially those listed on Bedrinth, can be installed by pasting the provided command. For example, to install LeviAntiCheat:

Bash
1
lip install github.com/LiteLDev/LeviAntiCheat

Follow additional instructions provided by individual mod developers when needed.