├── .clang-format ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report_en.yml │ ├── bug_report_zh.yml │ ├── config.yml │ ├── feature_request_en.yml │ └── feature_request_zh.yml └── workflows │ ├── build-template.yml │ ├── cmake-build.yml │ └── updateSDK.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CONTRIBUTING.md ├── LICENSE ├── LINK.txt ├── README.md ├── README_zh.md ├── TODOs.md ├── changelog.md ├── create_release_note.py ├── dist └── create_release.ps1 ├── docs ├── func.md └── simplayerscrpit.md ├── fetchSDK.cmd ├── imgs ├── logo.svg └── patreon.svg ├── installer.exe ├── metadata ├── prepareLib.cmd ├── run_bds.ps1 ├── sponsors.md └── src ├── Plugin.cpp ├── Version.h ├── banner.txt ├── base ├── Configuration.cpp ├── Msg.cpp ├── Particle.cpp ├── TrAPI.cpp ├── TrapdoorAPI.cpp ├── TrapdoorMod.cpp ├── UserConfig.cpp └── Utils.cpp ├── commands ├── CalCommand.cpp ├── CommandHelper.cpp ├── CounterCommand.cpp ├── DataCommand.cpp ├── DistanceCommand.cpp ├── HsaCommand.cpp ├── HudCommand.cpp ├── LogCommand.cpp ├── PlayerCommand.cpp ├── ProfCommand.cpp ├── RandCommand.cpp ├── SelfCommand.cpp ├── ShortcutCommand.cpp ├── SlimeChunkCommand.cpp ├── SpawnCommand.cpp ├── TestCommand.cpp ├── TickCommand.cpp ├── TrFunctionCommand.cpp ├── TrapdoorCommand.cpp ├── TriggerCommand.cpp └── VillageCommand.cpp ├── config.h.in ├── data ├── DataConverter.cpp ├── TAABB.cpp ├── TActor.cpp ├── TBlockPos.cpp └── TVec3.cpp ├── dllmain.cpp ├── functions ├── BlockRotateHelper.cpp ├── ClientLevel.cpp ├── DistanceHelper.cpp ├── EventTrigger.cpp ├── Events.cpp ├── HUDHelper.cpp ├── HopperCounter.cpp ├── HsaHelper.cpp ├── InfoDisplay.cpp ├── InventoryTool.cpp ├── MCTick.cpp ├── MicroTicking.cpp ├── RandomTweaker.cpp ├── RedstoneTool.cpp ├── ScriptDriver.cpp ├── Shortcuts.cpp ├── SimPlayerManager.cpp ├── SimpleProfiler.cpp ├── SimulateAPIWrapper.cpp ├── SlimeChunkHelper.cpp ├── SpawnAnalyzer.cpp ├── SpawnHelper.cpp ├── SysInfoHelper.cpp ├── Tweakers.cpp └── VillageHelper.cpp ├── include ├── 3rd │ ├── forward.hpp │ ├── lua │ │ ├── lauxlib.h │ │ ├── lua.h │ │ ├── lua.hpp │ │ ├── luaconf.h │ │ └── lualib.h │ ├── lua54.lib │ ├── sol.hpp │ └── sol │ │ └── config.hpp ├── BlockRotateHelper.h ├── ClientLevel.h ├── CommandHelper.h ├── Configuration.h ├── DataConverter.h ├── DistanceHelper.h ├── EventTrigger.h ├── Events.h ├── HUDHelper.h ├── HopperCounter.h ├── HsaHelper.h ├── InfoDisplay.h ├── InventoryTool.h ├── MCTick.h ├── MicroTicking.h ├── Msg.h ├── Particle.h ├── RandomTweaker.h ├── RedstoneTool.h ├── ScriptDriver.h ├── Shortcuts.h ├── SimPlayerHelper.h ├── SimpleProfiler.h ├── SimulateAPIWrapper.h ├── SlimeChunkHelper.h ├── SpawnAnalyzer.h ├── SpawnHelper.h ├── SysInfoHelper.h ├── TAABB.h ├── TActor.h ├── TBlockPos.h ├── TVec3.h ├── TrAPI.h ├── TrapdoorAPI.h ├── TrapdoorMod.h ├── Tweakers.h ├── UserConfig.h ├── Utils.h ├── VillageHelper.h └── config.h ├── pch.cpp ├── pch.h └── root ├── config.json ├── lang.json └── scripts └── hello_world.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/ISSUE_TEMPLATE/bug_report_en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/ISSUE_TEMPLATE/bug_report_zh.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/ISSUE_TEMPLATE/feature_request_en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/ISSUE_TEMPLATE/feature_request_zh.yml -------------------------------------------------------------------------------- /.github/workflows/build-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/workflows/build-template.yml -------------------------------------------------------------------------------- /.github/workflows/cmake-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/workflows/cmake-build.yml -------------------------------------------------------------------------------- /.github/workflows/updateSDK.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.github/workflows/updateSDK.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/LICENSE -------------------------------------------------------------------------------- /LINK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/LINK.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/README_zh.md -------------------------------------------------------------------------------- /TODOs.md: -------------------------------------------------------------------------------- 1 | ## TODO 2 | 3 | - [] 继续优化翻译 4 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/changelog.md -------------------------------------------------------------------------------- /create_release_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/create_release_note.py -------------------------------------------------------------------------------- /dist/create_release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/dist/create_release.ps1 -------------------------------------------------------------------------------- /docs/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/docs/func.md -------------------------------------------------------------------------------- /docs/simplayerscrpit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/docs/simplayerscrpit.md -------------------------------------------------------------------------------- /fetchSDK.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/fetchSDK.cmd -------------------------------------------------------------------------------- /imgs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/imgs/logo.svg -------------------------------------------------------------------------------- /imgs/patreon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/imgs/patreon.svg -------------------------------------------------------------------------------- /installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/installer.exe -------------------------------------------------------------------------------- /metadata: -------------------------------------------------------------------------------- 1 | 0.41.1 2 | 1.20.30.02 3 | 2.16.1 4 | -------------------------------------------------------------------------------- /prepareLib.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/prepareLib.cmd -------------------------------------------------------------------------------- /run_bds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/run_bds.ps1 -------------------------------------------------------------------------------- /sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/sponsors.md -------------------------------------------------------------------------------- /src/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/Plugin.cpp -------------------------------------------------------------------------------- /src/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/Version.h -------------------------------------------------------------------------------- /src/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/banner.txt -------------------------------------------------------------------------------- /src/base/Configuration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/Configuration.cpp -------------------------------------------------------------------------------- /src/base/Msg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/Msg.cpp -------------------------------------------------------------------------------- /src/base/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/Particle.cpp -------------------------------------------------------------------------------- /src/base/TrAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/TrAPI.cpp -------------------------------------------------------------------------------- /src/base/TrapdoorAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/TrapdoorAPI.cpp -------------------------------------------------------------------------------- /src/base/TrapdoorMod.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/TrapdoorMod.cpp -------------------------------------------------------------------------------- /src/base/UserConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/UserConfig.cpp -------------------------------------------------------------------------------- /src/base/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/base/Utils.cpp -------------------------------------------------------------------------------- /src/commands/CalCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/CalCommand.cpp -------------------------------------------------------------------------------- /src/commands/CommandHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/CommandHelper.cpp -------------------------------------------------------------------------------- /src/commands/CounterCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/CounterCommand.cpp -------------------------------------------------------------------------------- /src/commands/DataCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/DataCommand.cpp -------------------------------------------------------------------------------- /src/commands/DistanceCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/DistanceCommand.cpp -------------------------------------------------------------------------------- /src/commands/HsaCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/HsaCommand.cpp -------------------------------------------------------------------------------- /src/commands/HudCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/HudCommand.cpp -------------------------------------------------------------------------------- /src/commands/LogCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/LogCommand.cpp -------------------------------------------------------------------------------- /src/commands/PlayerCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/PlayerCommand.cpp -------------------------------------------------------------------------------- /src/commands/ProfCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/ProfCommand.cpp -------------------------------------------------------------------------------- /src/commands/RandCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/RandCommand.cpp -------------------------------------------------------------------------------- /src/commands/SelfCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/SelfCommand.cpp -------------------------------------------------------------------------------- /src/commands/ShortcutCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/ShortcutCommand.cpp -------------------------------------------------------------------------------- /src/commands/SlimeChunkCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/SlimeChunkCommand.cpp -------------------------------------------------------------------------------- /src/commands/SpawnCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/SpawnCommand.cpp -------------------------------------------------------------------------------- /src/commands/TestCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/TestCommand.cpp -------------------------------------------------------------------------------- /src/commands/TickCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/TickCommand.cpp -------------------------------------------------------------------------------- /src/commands/TrFunctionCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/TrFunctionCommand.cpp -------------------------------------------------------------------------------- /src/commands/TrapdoorCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/TrapdoorCommand.cpp -------------------------------------------------------------------------------- /src/commands/TriggerCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/TriggerCommand.cpp -------------------------------------------------------------------------------- /src/commands/VillageCommand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/commands/VillageCommand.cpp -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/data/DataConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/data/DataConverter.cpp -------------------------------------------------------------------------------- /src/data/TAABB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/data/TAABB.cpp -------------------------------------------------------------------------------- /src/data/TActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/data/TActor.cpp -------------------------------------------------------------------------------- /src/data/TBlockPos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/data/TBlockPos.cpp -------------------------------------------------------------------------------- /src/data/TVec3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/data/TVec3.cpp -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/functions/BlockRotateHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/BlockRotateHelper.cpp -------------------------------------------------------------------------------- /src/functions/ClientLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/ClientLevel.cpp -------------------------------------------------------------------------------- /src/functions/DistanceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/DistanceHelper.cpp -------------------------------------------------------------------------------- /src/functions/EventTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/EventTrigger.cpp -------------------------------------------------------------------------------- /src/functions/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/Events.cpp -------------------------------------------------------------------------------- /src/functions/HUDHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/HUDHelper.cpp -------------------------------------------------------------------------------- /src/functions/HopperCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/HopperCounter.cpp -------------------------------------------------------------------------------- /src/functions/HsaHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/HsaHelper.cpp -------------------------------------------------------------------------------- /src/functions/InfoDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/InfoDisplay.cpp -------------------------------------------------------------------------------- /src/functions/InventoryTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/InventoryTool.cpp -------------------------------------------------------------------------------- /src/functions/MCTick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/MCTick.cpp -------------------------------------------------------------------------------- /src/functions/MicroTicking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/MicroTicking.cpp -------------------------------------------------------------------------------- /src/functions/RandomTweaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/RandomTweaker.cpp -------------------------------------------------------------------------------- /src/functions/RedstoneTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/RedstoneTool.cpp -------------------------------------------------------------------------------- /src/functions/ScriptDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/ScriptDriver.cpp -------------------------------------------------------------------------------- /src/functions/Shortcuts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/Shortcuts.cpp -------------------------------------------------------------------------------- /src/functions/SimPlayerManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/SimPlayerManager.cpp -------------------------------------------------------------------------------- /src/functions/SimpleProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/SimpleProfiler.cpp -------------------------------------------------------------------------------- /src/functions/SimulateAPIWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/SimulateAPIWrapper.cpp -------------------------------------------------------------------------------- /src/functions/SlimeChunkHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/SlimeChunkHelper.cpp -------------------------------------------------------------------------------- /src/functions/SpawnAnalyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/SpawnAnalyzer.cpp -------------------------------------------------------------------------------- /src/functions/SpawnHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/SpawnHelper.cpp -------------------------------------------------------------------------------- /src/functions/SysInfoHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/SysInfoHelper.cpp -------------------------------------------------------------------------------- /src/functions/Tweakers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/Tweakers.cpp -------------------------------------------------------------------------------- /src/functions/VillageHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/functions/VillageHelper.cpp -------------------------------------------------------------------------------- /src/include/3rd/forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/forward.hpp -------------------------------------------------------------------------------- /src/include/3rd/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/lua/lauxlib.h -------------------------------------------------------------------------------- /src/include/3rd/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/lua/lua.h -------------------------------------------------------------------------------- /src/include/3rd/lua/lua.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/lua/lua.hpp -------------------------------------------------------------------------------- /src/include/3rd/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/lua/luaconf.h -------------------------------------------------------------------------------- /src/include/3rd/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/lua/lualib.h -------------------------------------------------------------------------------- /src/include/3rd/lua54.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/lua54.lib -------------------------------------------------------------------------------- /src/include/3rd/sol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/sol.hpp -------------------------------------------------------------------------------- /src/include/3rd/sol/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/3rd/sol/config.hpp -------------------------------------------------------------------------------- /src/include/BlockRotateHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/BlockRotateHelper.h -------------------------------------------------------------------------------- /src/include/ClientLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/ClientLevel.h -------------------------------------------------------------------------------- /src/include/CommandHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/CommandHelper.h -------------------------------------------------------------------------------- /src/include/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/Configuration.h -------------------------------------------------------------------------------- /src/include/DataConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/DataConverter.h -------------------------------------------------------------------------------- /src/include/DistanceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/DistanceHelper.h -------------------------------------------------------------------------------- /src/include/EventTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/EventTrigger.h -------------------------------------------------------------------------------- /src/include/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/Events.h -------------------------------------------------------------------------------- /src/include/HUDHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/HUDHelper.h -------------------------------------------------------------------------------- /src/include/HopperCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/HopperCounter.h -------------------------------------------------------------------------------- /src/include/HsaHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/HsaHelper.h -------------------------------------------------------------------------------- /src/include/InfoDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/InfoDisplay.h -------------------------------------------------------------------------------- /src/include/InventoryTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/InventoryTool.h -------------------------------------------------------------------------------- /src/include/MCTick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/MCTick.h -------------------------------------------------------------------------------- /src/include/MicroTicking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/MicroTicking.h -------------------------------------------------------------------------------- /src/include/Msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/Msg.h -------------------------------------------------------------------------------- /src/include/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/Particle.h -------------------------------------------------------------------------------- /src/include/RandomTweaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/RandomTweaker.h -------------------------------------------------------------------------------- /src/include/RedstoneTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/RedstoneTool.h -------------------------------------------------------------------------------- /src/include/ScriptDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/ScriptDriver.h -------------------------------------------------------------------------------- /src/include/Shortcuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/Shortcuts.h -------------------------------------------------------------------------------- /src/include/SimPlayerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/SimPlayerHelper.h -------------------------------------------------------------------------------- /src/include/SimpleProfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/SimpleProfiler.h -------------------------------------------------------------------------------- /src/include/SimulateAPIWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/SimulateAPIWrapper.h -------------------------------------------------------------------------------- /src/include/SlimeChunkHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/SlimeChunkHelper.h -------------------------------------------------------------------------------- /src/include/SpawnAnalyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/SpawnAnalyzer.h -------------------------------------------------------------------------------- /src/include/SpawnHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/SpawnHelper.h -------------------------------------------------------------------------------- /src/include/SysInfoHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/SysInfoHelper.h -------------------------------------------------------------------------------- /src/include/TAABB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/TAABB.h -------------------------------------------------------------------------------- /src/include/TActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/TActor.h -------------------------------------------------------------------------------- /src/include/TBlockPos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/TBlockPos.h -------------------------------------------------------------------------------- /src/include/TVec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/TVec3.h -------------------------------------------------------------------------------- /src/include/TrAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/TrAPI.h -------------------------------------------------------------------------------- /src/include/TrapdoorAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/TrapdoorAPI.h -------------------------------------------------------------------------------- /src/include/TrapdoorMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/TrapdoorMod.h -------------------------------------------------------------------------------- /src/include/Tweakers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/Tweakers.h -------------------------------------------------------------------------------- /src/include/UserConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/UserConfig.h -------------------------------------------------------------------------------- /src/include/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/Utils.h -------------------------------------------------------------------------------- /src/include/VillageHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/VillageHelper.h -------------------------------------------------------------------------------- /src/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/include/config.h -------------------------------------------------------------------------------- /src/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/pch.cpp -------------------------------------------------------------------------------- /src/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/pch.h -------------------------------------------------------------------------------- /src/root/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/root/config.json -------------------------------------------------------------------------------- /src/root/lang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedrock-dev/trapdoor-ll/HEAD/src/root/lang.json -------------------------------------------------------------------------------- /src/root/scripts/hello_world.lua: -------------------------------------------------------------------------------- 1 | function Tick() 2 | Bot.say("Hello world") 3 | end --------------------------------------------------------------------------------