├── .gitignore ├── LICENSE.txt ├── README.md ├── manifest.json ├── pack_icon.png ├── package.json ├── scripts ├── example │ ├── commands │ │ ├── import-commands.js │ │ ├── information │ │ │ └── help.js │ │ ├── moderation │ │ │ ├── ban.js │ │ │ └── unban.js │ │ └── other │ │ │ ├── home.js │ │ │ └── sell.js │ └── index.js └── library │ ├── Minecraft.js │ ├── build │ ├── configurations.js │ ├── manager │ │ ├── Database.js │ │ └── EventEmitter.js │ └── structure │ │ ├── CommandBuilder.js │ │ ├── EntityBuilder.js │ │ ├── PlayerBuilder.js │ │ ├── interfaces │ │ └── Message.js │ │ └── serverBuilder.js │ ├── miscellaneous │ ├── chatrank.js │ └── leaderboard.js │ └── utils │ ├── formatter.js │ ├── ms.js │ └── scheduling.js ├── src ├── example │ ├── commands │ │ ├── import-commands.ts │ │ ├── information │ │ │ └── help.ts │ │ ├── moderation │ │ │ ├── ban.ts │ │ │ └── unban.ts │ │ └── other │ │ │ ├── home.ts │ │ │ └── sell.ts │ └── index.ts └── library │ ├── @types │ ├── build │ │ ├── Events.d.ts │ │ ├── manager │ │ │ └── EventEmitter.d.ts │ │ └── structure │ │ │ ├── CommandBuilder.d.ts │ │ │ ├── EntityBuilder.d.ts │ │ │ ├── PlayerBuilder.d.ts │ │ │ └── ServerBuilder.d.ts │ ├── index.d.ts │ ├── mojang-minecraft.d.ts │ └── utils │ │ └── ms.d.ts │ ├── Minecraft.ts │ ├── build │ ├── configurations.ts │ ├── manager │ │ ├── Database.ts │ │ └── EventEmitter.ts │ └── structure │ │ ├── CommandBuilder.ts │ │ ├── EntityBuilder.ts │ │ ├── PlayerBuilder.ts │ │ ├── ServerBuilder.ts │ │ └── interfaces │ │ └── Message.ts │ ├── miscellaneous │ ├── chatrank.ts │ └── leaderboard.ts │ └── utils │ ├── formatter.ts │ ├── ms.ts │ └── scheduling.ts ├── transpile.bat ├── transpile.sh └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/README.md -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/manifest.json -------------------------------------------------------------------------------- /pack_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/pack_icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/package.json -------------------------------------------------------------------------------- /scripts/example/commands/import-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/example/commands/import-commands.js -------------------------------------------------------------------------------- /scripts/example/commands/information/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/example/commands/information/help.js -------------------------------------------------------------------------------- /scripts/example/commands/moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/example/commands/moderation/ban.js -------------------------------------------------------------------------------- /scripts/example/commands/moderation/unban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/example/commands/moderation/unban.js -------------------------------------------------------------------------------- /scripts/example/commands/other/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/example/commands/other/home.js -------------------------------------------------------------------------------- /scripts/example/commands/other/sell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/example/commands/other/sell.js -------------------------------------------------------------------------------- /scripts/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/example/index.js -------------------------------------------------------------------------------- /scripts/library/Minecraft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/Minecraft.js -------------------------------------------------------------------------------- /scripts/library/build/configurations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/configurations.js -------------------------------------------------------------------------------- /scripts/library/build/manager/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/manager/Database.js -------------------------------------------------------------------------------- /scripts/library/build/manager/EventEmitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/manager/EventEmitter.js -------------------------------------------------------------------------------- /scripts/library/build/structure/CommandBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/structure/CommandBuilder.js -------------------------------------------------------------------------------- /scripts/library/build/structure/EntityBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/structure/EntityBuilder.js -------------------------------------------------------------------------------- /scripts/library/build/structure/PlayerBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/structure/PlayerBuilder.js -------------------------------------------------------------------------------- /scripts/library/build/structure/interfaces/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/structure/interfaces/Message.js -------------------------------------------------------------------------------- /scripts/library/build/structure/serverBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/build/structure/serverBuilder.js -------------------------------------------------------------------------------- /scripts/library/miscellaneous/chatrank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/miscellaneous/chatrank.js -------------------------------------------------------------------------------- /scripts/library/miscellaneous/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/miscellaneous/leaderboard.js -------------------------------------------------------------------------------- /scripts/library/utils/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/utils/formatter.js -------------------------------------------------------------------------------- /scripts/library/utils/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/utils/ms.js -------------------------------------------------------------------------------- /scripts/library/utils/scheduling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/scripts/library/utils/scheduling.js -------------------------------------------------------------------------------- /src/example/commands/import-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/example/commands/import-commands.ts -------------------------------------------------------------------------------- /src/example/commands/information/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/example/commands/information/help.ts -------------------------------------------------------------------------------- /src/example/commands/moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/example/commands/moderation/ban.ts -------------------------------------------------------------------------------- /src/example/commands/moderation/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/example/commands/moderation/unban.ts -------------------------------------------------------------------------------- /src/example/commands/other/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/example/commands/other/home.ts -------------------------------------------------------------------------------- /src/example/commands/other/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/example/commands/other/sell.ts -------------------------------------------------------------------------------- /src/example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/example/index.ts -------------------------------------------------------------------------------- /src/library/@types/build/Events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/build/Events.d.ts -------------------------------------------------------------------------------- /src/library/@types/build/manager/EventEmitter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/build/manager/EventEmitter.d.ts -------------------------------------------------------------------------------- /src/library/@types/build/structure/CommandBuilder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/build/structure/CommandBuilder.d.ts -------------------------------------------------------------------------------- /src/library/@types/build/structure/EntityBuilder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/build/structure/EntityBuilder.d.ts -------------------------------------------------------------------------------- /src/library/@types/build/structure/PlayerBuilder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/build/structure/PlayerBuilder.d.ts -------------------------------------------------------------------------------- /src/library/@types/build/structure/ServerBuilder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/build/structure/ServerBuilder.d.ts -------------------------------------------------------------------------------- /src/library/@types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/index.d.ts -------------------------------------------------------------------------------- /src/library/@types/mojang-minecraft.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/mojang-minecraft.d.ts -------------------------------------------------------------------------------- /src/library/@types/utils/ms.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/@types/utils/ms.d.ts -------------------------------------------------------------------------------- /src/library/Minecraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/Minecraft.ts -------------------------------------------------------------------------------- /src/library/build/configurations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/configurations.ts -------------------------------------------------------------------------------- /src/library/build/manager/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/manager/Database.ts -------------------------------------------------------------------------------- /src/library/build/manager/EventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/manager/EventEmitter.ts -------------------------------------------------------------------------------- /src/library/build/structure/CommandBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/structure/CommandBuilder.ts -------------------------------------------------------------------------------- /src/library/build/structure/EntityBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/structure/EntityBuilder.ts -------------------------------------------------------------------------------- /src/library/build/structure/PlayerBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/structure/PlayerBuilder.ts -------------------------------------------------------------------------------- /src/library/build/structure/ServerBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/structure/ServerBuilder.ts -------------------------------------------------------------------------------- /src/library/build/structure/interfaces/Message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/build/structure/interfaces/Message.ts -------------------------------------------------------------------------------- /src/library/miscellaneous/chatrank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/miscellaneous/chatrank.ts -------------------------------------------------------------------------------- /src/library/miscellaneous/leaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/miscellaneous/leaderboard.ts -------------------------------------------------------------------------------- /src/library/utils/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/utils/formatter.ts -------------------------------------------------------------------------------- /src/library/utils/ms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/utils/ms.ts -------------------------------------------------------------------------------- /src/library/utils/scheduling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/src/library/utils/scheduling.ts -------------------------------------------------------------------------------- /transpile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/transpile.bat -------------------------------------------------------------------------------- /transpile.sh: -------------------------------------------------------------------------------- 1 | #Deletes folders 2 | rm -r scripts/* 3 | #Transpiles 4 | npx tsc -watch -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notbeer/Gametest-API-Wrapper/HEAD/tsconfig.json --------------------------------------------------------------------------------