Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrBox committed Jan 28, 2021
1 parent 63c666b commit 255ec38
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion LiteLoader/dlsym.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
13 changes: 13 additions & 0 deletions README_zhcn.md
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 255ec38

Please # to comment.