LeviLamina is an unofficial mod loader designed to offer indispensable API support for Minecraft Bedrock Edition. It boasts a comprehensive API, an array of utility interfaces, a robust event system, and comprehensive support for basic interfaces. LeviLamina provides an expansive API, a powerful event system, and a wealth of encapsulated development infrastructure interfaces, forming a solid foundation for augmenting the Minecraft Bedrock Edition with additional gameplay features and functionalities. By leveraging mods, the process of extending Bedrock functionality becomes effortless, with a user-friendly development process and an adaptable approach.
LeviLamina - A lightweight, modular and versatile mod loader for Minecraft Bedrock Edition, formerly known as LiteLoaderBDS
On each startup the egg will look for a file called lip-install.txt
and use lip to attempt to install all specified packages.
The format of lip-install.txt
is one package per line in the usual format lip expects.
Install LeviAntiCheat version 0.3.7
github.com/LiteLDev/[email protected]
Install LeviAntiCheat latest version
github.com/LiteLDev/LeviAntiCheat
LeviLamina Bedrock Dedicated Server requires a single port (default 19132)
Port | default |
---|---|
Game | 19132 |
General Issues can check here -> LeviLamina Issues
Name | Tag |
---|---|
ghcr.io/ptero-eggs/yolks:wine_staging | ghcr.io/ptero-eggs/yolks:wine_staging |
Name | Description | Environment Variable | Default Value | User Viewable | User Editable |
---|---|---|---|---|---|
Wine Debug | WINEDEBUG | -all | No | No | |
Version | Version of LeviLamina to install in x.y.z format. Blank or "latest" will install the latest release. | VERSION | Yes | Yes | |
Server Name | The name for the server | SERVERNAME | Bedrock Dedicated Server | Yes | Yes |
Gamemode | Allowed values: "survival", "creative", or "adventure" | GAMEMODE | survival | Yes | Yes |
Difficulty | Allowed values: "peaceful", "easy", "normal", or "hard" | DIFFICULTY | easy | Yes | Yes |
Maximum Players | Maximum players to join on the server | MAXPLAYERS | 10 | Yes | Yes |
World Name | World/Level name to use for the server | WORLDNAME | Bedrock level | Yes | Yes |
Winetricks | WINETRICKS_RUN | vcrun2022 | No | No |
# Install required packages
apt update
apt install lsb-release
# Install wine
wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/$(lsb_release -sc 2>/dev/null)/winehq-$(lsb_release -sc 2>/dev/null).sources
apt update
apt install --no-install-recommends winehq-stable -y
cd /mnt/server || { echo "Failed to change directory"; exit 1; }
# Install lip
LIP_URL="https://github.com/lippkg/lip/releases/latest/download/lip-windows-amd64.zip"
wget $LIP_URL -O lip.zip
unzip -o lip.zip lip.exe
rm lip.zip
if [ -n "$VERSION" ] && [ "$VERSION" != "latest" ]; then
wine lip.exe install --yes github.com/LiteLDev/LeviLamina@"$VERSION"
else
wine lip.exe install --yes github.com/LiteLDev/LeviLamina
fi
echo "Server Installed"
if [ -f "lip-install.txt" ]; then
echo "Installing packages from lip-install.txt"
wine lip.exe install --yes --specifiers lip-install.txt
echo "Packages installed"
fi