This is a tool to load mods onto the Linux version of Bedrock Dedicated Server.
libserver_modloader.so
, either from releases or building your ownmods/
next to your moddable BDS binaryLD_PRELOAD=path/to/libserver_modloader.so ./bedrock_server_symbols_moddable.debug
git clone https://github.com/minecraft-linux/server-modloader.git --recursive
cd server-modloader
mkdir build && cd build
cmake ..
make
You now have a libserver_modloader.so
binary.
Check out the wiki for examples and more information.
Newer versions of BDS don't have exported symbols anymore, so a little hacking is necessary to modify the binary and make the symbols linkable.
Using LIEF, you can create a patched, moddable BDS from bedrock_server_symbols.debug
using the following Python script:
import lief
import sys
lib_symbols = lief.parse("bedrock_server_symbols.debug")
for s in filter(lambda e: e.exported, lib_symbols.static_symbols):
lib_symbols.add_dynamic_symbol(s)
lib_symbols.write("bedrock_server_symbols_patched.debug")