diff --git a/LiteLoader/dlsym.cpp b/LiteLoader/dlsym.cpp index 749c519829..2ffc5912f8 100644 --- a/LiteLoader/dlsym.cpp +++ b/LiteLoader/dlsym.cpp @@ -130,7 +130,7 @@ string ptr2name(void* ptr) { void* dlsym_real(const char* x) { if (pdb == nullptr) { if (!std::filesystem::exists("bedrock_server.symdb")) { - printf("SymDB not found\ntry rerun gensymdb.exe\n"); + printf("SymDB not found\ntry to run RoDB.exe\n"); exit(1); } pdb = new RoDB_R("bedrock_server.symdb"); diff --git a/README.md b/README.md new file mode 100644 index 0000000000..82a1f2d5d2 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# LiteLoader +[简体中文](README_zhcn.md) +A lightweight Bedorck Dedicated Server Plugin Loader +Based on [BedrockX](https://github.com/Sysca11/BedrockX) + +## Install +1. Download LiteLoader from [Releases](https://github.com/LiteLDev/LiteLoader/releases), unzip it to BDS directory +2. Run `RoDB.exe` to generate symbol files(`.symdb` and `.symdef`), before you run `RoDB.exe` you need to check if the `bedrock_server.pdb` exists + +## Usage +Put .dll plugins into `plugins\` directory then run `bedrock_server.exe` + +## More +See [Wiki](https://github.com/LiteLDev/LiteLoader/wiki) \ No newline at end of file diff --git a/README_zhcn.md b/README_zhcn.md new file mode 100644 index 0000000000..d3309bc59d --- /dev/null +++ b/README_zhcn.md @@ -0,0 +1,13 @@ +# LiteLoader +轻量化的Bedrock Dedicated Server插件加载器 +基于[BedrockX](https://github.com/Sysca11/BedrockX) + +## Install +1. 从[Releases](https://github.com/LiteLDev/LiteLoader/releases)下载LiteLoader,将压缩文件解压到BDS目录下 +2. 运行`RoDB.exe`以生成符号文件(`.symdb`和`.symdef`),运行`RoDB.exe`之前你需要检查`bedrock_server.pdb`文件是否存在 + +## Usage +把.dll插件放到`plugins\`目录下然后启动`bedrock_server.exe` + +## More +请参见[Wiki](https://github.com/LiteLDev/LiteLoader/wiki) \ No newline at end of file