├── .dockerignore ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── codeql-analysis.yml │ └── fly-deploy.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.MD ├── Dockerfile ├── LICENSE ├── README.md ├── Trivia_Bot.png ├── babel.config.json ├── fly.toml ├── package.json ├── renovate.json └── src ├── Commands ├── help.js ├── info.js ├── mcchill.js ├── mccompetitive.js ├── ping.js ├── tfchill.js └── tfcompetitive.js ├── Events ├── messageCreate │ └── messageCreate.js └── ready.js ├── Structures ├── Command.js ├── Event.js ├── MDClient.js └── Util.js └── bot.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: elenirotsides 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/fly-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/.github/workflows/fly-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode 3 | node_modules 4 | .env 5 | *icloud -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/README.md -------------------------------------------------------------------------------- /Trivia_Bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/Trivia_Bot.png -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/babel.config.json -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/fly.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/renovate.json -------------------------------------------------------------------------------- /src/Commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Commands/help.js -------------------------------------------------------------------------------- /src/Commands/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Commands/info.js -------------------------------------------------------------------------------- /src/Commands/mcchill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Commands/mcchill.js -------------------------------------------------------------------------------- /src/Commands/mccompetitive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Commands/mccompetitive.js -------------------------------------------------------------------------------- /src/Commands/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Commands/ping.js -------------------------------------------------------------------------------- /src/Commands/tfchill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Commands/tfchill.js -------------------------------------------------------------------------------- /src/Commands/tfcompetitive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Commands/tfcompetitive.js -------------------------------------------------------------------------------- /src/Events/messageCreate/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Events/messageCreate/messageCreate.js -------------------------------------------------------------------------------- /src/Events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Events/ready.js -------------------------------------------------------------------------------- /src/Structures/Command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Structures/Command.js -------------------------------------------------------------------------------- /src/Structures/Event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Structures/Event.js -------------------------------------------------------------------------------- /src/Structures/MDClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Structures/MDClient.js -------------------------------------------------------------------------------- /src/Structures/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/Structures/Util.js -------------------------------------------------------------------------------- /src/bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elenirotsides/Trivia-Bot/HEAD/src/bot.js --------------------------------------------------------------------------------