├── .github └── workflows │ ├── docker-publish.yml │ └── eslint.yml ├── .gitignore ├── Dockerfile ├── README.md ├── __test__ ├── Permissions.test.ts └── videoUtils.test.ts ├── conf.json ├── config └── example │ ├── auth.example.json │ └── config.example.json ├── docma.js ├── docs ├── content │ └── readme.html ├── css │ ├── docma.css │ └── styles.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── icomoon.svg │ ├── icomoon.ttf │ └── icomoon.woff ├── img │ ├── tree-deep.png │ ├── tree-first.png │ ├── tree-folded.png │ ├── tree-last.png │ ├── tree-node.png │ ├── tree-parent.png │ └── tree-space.png ├── index.html └── js │ ├── app.min.js │ ├── docma-web.js │ ├── highlight.pack.js │ └── tippy.all.min.js ├── externalTypings ├── .gitkeep ├── deepmerge │ └── index.d.ts ├── eris-errors │ └── index.d.ts ├── i10010n │ └── index.d.ts ├── mcping-js │ └── index.d.ts ├── minecraft-jsonapi │ └── index.d.ts └── pvpclient │ └── index.d.ts ├── nodemon.json ├── package.json ├── pm2.json ├── resources └── hat.png ├── src ├── PvPCraft.ts ├── ShardManager.js ├── lib │ ├── Analytics.ts │ ├── BaseDB.ts │ ├── Command │ │ ├── Command.ts │ │ ├── CommandTypes.ts │ │ ├── DiscordCommandHelper.ts │ │ └── PvPCraftCommandHelper.ts │ ├── Config.ts │ ├── ConfigDB.ts │ ├── MessageSender.ts │ ├── MusicDB.ts │ ├── Permissions.ts │ ├── Player.js │ ├── Purger.ts │ ├── SlowSender.ts │ ├── StandardDB.ts │ ├── TaskQueue.ts │ ├── WarframeData.ts │ ├── WorldState.ts │ ├── database.js │ ├── dbEventState.js │ ├── feeds.ts │ ├── hats.ts │ ├── lock.js │ ├── parseState.ts │ ├── toJSON.ts │ ├── utils.ts │ └── videoUtils.ts ├── main.js ├── middleware │ ├── logging.js │ ├── rateLimits.js │ ├── shardedInfo.ts │ └── template.js ├── modules │ ├── autoMod.js │ ├── chess.ts │ ├── cleverBot.js │ ├── clusterRestart.ts │ ├── customCommands.js │ ├── dmAutoResponder.js │ ├── dualUniverse.js │ ├── evaluate.js │ ├── feedManager.ts │ ├── giveaways.js │ ├── hat.ts │ ├── help.ts │ ├── imagesearch.js │ ├── invites.js │ ├── minecraft.ts │ ├── moderationV2.ts │ ├── music.js │ ├── musicDisabled.ts │ ├── permissionsManager.ts │ ├── pokemon.js │ ├── rank.ts │ ├── search.ts │ ├── template.ts │ ├── utilities.ts │ ├── warframe.js │ └── welcome.ts ├── translations │ └── translations.db.js ├── types │ ├── eris.ts │ ├── lib.ts │ ├── moduleDefinition.ts │ ├── translate.ts │ └── utils.ts └── v2Modules │ ├── hat.ts │ ├── moderation.ts │ ├── permissionsManager.ts │ ├── purge.ts │ └── role.ts ├── tsconfig.json └── warframeData └── info.md /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/.github/workflows/eslint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/README.md -------------------------------------------------------------------------------- /__test__/Permissions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/__test__/Permissions.test.ts -------------------------------------------------------------------------------- /__test__/videoUtils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/__test__/videoUtils.test.ts -------------------------------------------------------------------------------- /conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["node_modules/jsdoc-strip-async-await"] 3 | } -------------------------------------------------------------------------------- /config/example/auth.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/config/example/auth.example.json -------------------------------------------------------------------------------- /config/example/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/config/example/config.example.json -------------------------------------------------------------------------------- /docma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docma.js -------------------------------------------------------------------------------- /docs/content/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/content/readme.html -------------------------------------------------------------------------------- /docs/css/docma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/css/docma.css -------------------------------------------------------------------------------- /docs/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/css/styles.css -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/fonts/icomoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/icomoon.svg -------------------------------------------------------------------------------- /docs/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/icomoon.ttf -------------------------------------------------------------------------------- /docs/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/fonts/icomoon.woff -------------------------------------------------------------------------------- /docs/img/tree-deep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/img/tree-deep.png -------------------------------------------------------------------------------- /docs/img/tree-first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/img/tree-first.png -------------------------------------------------------------------------------- /docs/img/tree-folded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/img/tree-folded.png -------------------------------------------------------------------------------- /docs/img/tree-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/img/tree-last.png -------------------------------------------------------------------------------- /docs/img/tree-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/img/tree-node.png -------------------------------------------------------------------------------- /docs/img/tree-parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/img/tree-parent.png -------------------------------------------------------------------------------- /docs/img/tree-space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/img/tree-space.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/js/app.min.js -------------------------------------------------------------------------------- /docs/js/docma-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/js/docma-web.js -------------------------------------------------------------------------------- /docs/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/js/highlight.pack.js -------------------------------------------------------------------------------- /docs/js/tippy.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/docs/js/tippy.all.min.js -------------------------------------------------------------------------------- /externalTypings/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /externalTypings/deepmerge/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "deepmerge"; 2 | -------------------------------------------------------------------------------- /externalTypings/eris-errors/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/externalTypings/eris-errors/index.d.ts -------------------------------------------------------------------------------- /externalTypings/i10010n/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/externalTypings/i10010n/index.d.ts -------------------------------------------------------------------------------- /externalTypings/mcping-js/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/externalTypings/mcping-js/index.d.ts -------------------------------------------------------------------------------- /externalTypings/minecraft-jsonapi/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/externalTypings/minecraft-jsonapi/index.d.ts -------------------------------------------------------------------------------- /externalTypings/pvpclient/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "pvpclient"; 2 | -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/package.json -------------------------------------------------------------------------------- /pm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/pm2.json -------------------------------------------------------------------------------- /resources/hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/resources/hat.png -------------------------------------------------------------------------------- /src/PvPCraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/PvPCraft.ts -------------------------------------------------------------------------------- /src/ShardManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/ShardManager.js -------------------------------------------------------------------------------- /src/lib/Analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Analytics.ts -------------------------------------------------------------------------------- /src/lib/BaseDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/BaseDB.ts -------------------------------------------------------------------------------- /src/lib/Command/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Command/Command.ts -------------------------------------------------------------------------------- /src/lib/Command/CommandTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Command/CommandTypes.ts -------------------------------------------------------------------------------- /src/lib/Command/DiscordCommandHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Command/DiscordCommandHelper.ts -------------------------------------------------------------------------------- /src/lib/Command/PvPCraftCommandHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Command/PvPCraftCommandHelper.ts -------------------------------------------------------------------------------- /src/lib/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Config.ts -------------------------------------------------------------------------------- /src/lib/ConfigDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/ConfigDB.ts -------------------------------------------------------------------------------- /src/lib/MessageSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/MessageSender.ts -------------------------------------------------------------------------------- /src/lib/MusicDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/MusicDB.ts -------------------------------------------------------------------------------- /src/lib/Permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Permissions.ts -------------------------------------------------------------------------------- /src/lib/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Player.js -------------------------------------------------------------------------------- /src/lib/Purger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/Purger.ts -------------------------------------------------------------------------------- /src/lib/SlowSender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/SlowSender.ts -------------------------------------------------------------------------------- /src/lib/StandardDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/StandardDB.ts -------------------------------------------------------------------------------- /src/lib/TaskQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/TaskQueue.ts -------------------------------------------------------------------------------- /src/lib/WarframeData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/WarframeData.ts -------------------------------------------------------------------------------- /src/lib/WorldState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/WorldState.ts -------------------------------------------------------------------------------- /src/lib/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/database.js -------------------------------------------------------------------------------- /src/lib/dbEventState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/dbEventState.js -------------------------------------------------------------------------------- /src/lib/feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/feeds.ts -------------------------------------------------------------------------------- /src/lib/hats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/hats.ts -------------------------------------------------------------------------------- /src/lib/lock.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/parseState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/parseState.ts -------------------------------------------------------------------------------- /src/lib/toJSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/toJSON.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/lib/videoUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/lib/videoUtils.ts -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/main.js -------------------------------------------------------------------------------- /src/middleware/logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/middleware/logging.js -------------------------------------------------------------------------------- /src/middleware/rateLimits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/middleware/rateLimits.js -------------------------------------------------------------------------------- /src/middleware/shardedInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/middleware/shardedInfo.ts -------------------------------------------------------------------------------- /src/middleware/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/middleware/template.js -------------------------------------------------------------------------------- /src/modules/autoMod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/autoMod.js -------------------------------------------------------------------------------- /src/modules/chess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/chess.ts -------------------------------------------------------------------------------- /src/modules/cleverBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/cleverBot.js -------------------------------------------------------------------------------- /src/modules/clusterRestart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/clusterRestart.ts -------------------------------------------------------------------------------- /src/modules/customCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/customCommands.js -------------------------------------------------------------------------------- /src/modules/dmAutoResponder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/dmAutoResponder.js -------------------------------------------------------------------------------- /src/modules/dualUniverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/dualUniverse.js -------------------------------------------------------------------------------- /src/modules/evaluate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/evaluate.js -------------------------------------------------------------------------------- /src/modules/feedManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/feedManager.ts -------------------------------------------------------------------------------- /src/modules/giveaways.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/giveaways.js -------------------------------------------------------------------------------- /src/modules/hat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/hat.ts -------------------------------------------------------------------------------- /src/modules/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/help.ts -------------------------------------------------------------------------------- /src/modules/imagesearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/imagesearch.js -------------------------------------------------------------------------------- /src/modules/invites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/invites.js -------------------------------------------------------------------------------- /src/modules/minecraft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/minecraft.ts -------------------------------------------------------------------------------- /src/modules/moderationV2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/moderationV2.ts -------------------------------------------------------------------------------- /src/modules/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/music.js -------------------------------------------------------------------------------- /src/modules/musicDisabled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/musicDisabled.ts -------------------------------------------------------------------------------- /src/modules/permissionsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/permissionsManager.ts -------------------------------------------------------------------------------- /src/modules/pokemon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/pokemon.js -------------------------------------------------------------------------------- /src/modules/rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/rank.ts -------------------------------------------------------------------------------- /src/modules/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/search.ts -------------------------------------------------------------------------------- /src/modules/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/template.ts -------------------------------------------------------------------------------- /src/modules/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/utilities.ts -------------------------------------------------------------------------------- /src/modules/warframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/warframe.js -------------------------------------------------------------------------------- /src/modules/welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/modules/welcome.ts -------------------------------------------------------------------------------- /src/translations/translations.db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/translations/translations.db.js -------------------------------------------------------------------------------- /src/types/eris.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/types/eris.ts -------------------------------------------------------------------------------- /src/types/lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/types/lib.ts -------------------------------------------------------------------------------- /src/types/moduleDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/types/moduleDefinition.ts -------------------------------------------------------------------------------- /src/types/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/types/translate.ts -------------------------------------------------------------------------------- /src/types/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/types/utils.ts -------------------------------------------------------------------------------- /src/v2Modules/hat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/v2Modules/hat.ts -------------------------------------------------------------------------------- /src/v2Modules/moderation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/v2Modules/moderation.ts -------------------------------------------------------------------------------- /src/v2Modules/permissionsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/v2Modules/permissionsManager.ts -------------------------------------------------------------------------------- /src/v2Modules/purge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/v2Modules/purge.ts -------------------------------------------------------------------------------- /src/v2Modules/role.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/src/v2Modules/role.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/tsconfig.json -------------------------------------------------------------------------------- /warframeData/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macdja38/pvpcraft/HEAD/warframeData/info.md --------------------------------------------------------------------------------