├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .gitignore ├── 3rd-languages ├── ja_JP.json ├── th_TH.json └── vi_VN.json ├── LICENSE ├── README.md ├── TODO.md ├── docs ├── .nojekyll ├── CNAME ├── CONTRIBUTE.md ├── LICENSE ├── README.md ├── _coverpage.md ├── _sidebar.md ├── development │ ├── event.md │ ├── i18n.md │ └── ilapi.md ├── docsify-pagination.min.js ├── img │ ├── landtp │ │ └── 0.png │ ├── lmgr │ │ ├── 0.png │ │ ├── 1.png │ │ ├── a.png │ │ ├── b.png │ │ ├── c.png │ │ ├── d.png │ │ ├── e-1.png │ │ ├── e.png │ │ ├── f-1.png │ │ └── f.png │ ├── oplmgr │ │ └── 0.png │ ├── psr │ │ ├── 1.png │ │ └── 2.png │ └── v2.png ├── index.html ├── tools │ └── transfrom.md ├── user │ ├── commands.md │ ├── install.md │ ├── landtp.md │ ├── listenerMgr.md │ ├── lmgr.md │ ├── oplmgr.md │ └── playerselector.md └── why_chose_iland.md ├── iland-core.lua ├── iland └── lang │ ├── en_US.json │ ├── zh_CN.json │ └── zh_TW.json └── install_upgrade_guide.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd-languages/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/3rd-languages/ja_JP.json -------------------------------------------------------------------------------- /3rd-languages/th_TH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/3rd-languages/th_TH.json -------------------------------------------------------------------------------- /3rd-languages/vi_VN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/3rd-languages/vi_VN.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | myland.amd.rocks -------------------------------------------------------------------------------- /docs/CONTRIBUTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/CONTRIBUTE.md -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_coverpage.md: -------------------------------------------------------------------------------- 1 | # [AirLand Project](README) 2 | > BDS可用的,基于LiteLoader的全功能领地插件 3 | 4 | [Start now!](#%f0%9f%97%ba%ef%b8%8f-airland-project) -------------------------------------------------------------------------------- /docs/_sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/_sidebar.md -------------------------------------------------------------------------------- /docs/development/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/development/event.md -------------------------------------------------------------------------------- /docs/development/i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/development/i18n.md -------------------------------------------------------------------------------- /docs/development/ilapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/development/ilapi.md -------------------------------------------------------------------------------- /docs/docsify-pagination.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/docsify-pagination.min.js -------------------------------------------------------------------------------- /docs/img/landtp/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/landtp/0.png -------------------------------------------------------------------------------- /docs/img/lmgr/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/0.png -------------------------------------------------------------------------------- /docs/img/lmgr/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/1.png -------------------------------------------------------------------------------- /docs/img/lmgr/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/a.png -------------------------------------------------------------------------------- /docs/img/lmgr/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/b.png -------------------------------------------------------------------------------- /docs/img/lmgr/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/c.png -------------------------------------------------------------------------------- /docs/img/lmgr/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/d.png -------------------------------------------------------------------------------- /docs/img/lmgr/e-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/e-1.png -------------------------------------------------------------------------------- /docs/img/lmgr/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/e.png -------------------------------------------------------------------------------- /docs/img/lmgr/f-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/f-1.png -------------------------------------------------------------------------------- /docs/img/lmgr/f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/lmgr/f.png -------------------------------------------------------------------------------- /docs/img/oplmgr/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/oplmgr/0.png -------------------------------------------------------------------------------- /docs/img/psr/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/psr/1.png -------------------------------------------------------------------------------- /docs/img/psr/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/psr/2.png -------------------------------------------------------------------------------- /docs/img/v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/img/v2.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/tools/transfrom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/tools/transfrom.md -------------------------------------------------------------------------------- /docs/user/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/user/commands.md -------------------------------------------------------------------------------- /docs/user/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/user/install.md -------------------------------------------------------------------------------- /docs/user/landtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/user/landtp.md -------------------------------------------------------------------------------- /docs/user/listenerMgr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/user/listenerMgr.md -------------------------------------------------------------------------------- /docs/user/lmgr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/user/lmgr.md -------------------------------------------------------------------------------- /docs/user/oplmgr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/user/oplmgr.md -------------------------------------------------------------------------------- /docs/user/playerselector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/user/playerselector.md -------------------------------------------------------------------------------- /docs/why_chose_iland.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/docs/why_chose_iland.md -------------------------------------------------------------------------------- /iland-core.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/iland-core.lua -------------------------------------------------------------------------------- /iland/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/iland/lang/en_US.json -------------------------------------------------------------------------------- /iland/lang/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/iland/lang/zh_CN.json -------------------------------------------------------------------------------- /iland/lang/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/iland/lang/zh_TW.json -------------------------------------------------------------------------------- /install_upgrade_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bricktea/iLand-Core/HEAD/install_upgrade_guide.txt --------------------------------------------------------------------------------