├── .eslintrc.json ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE │ └── pull_request_template.md ├── SECURITY.md ├── SUPPORT.md ├── assets │ └── step_2.png ├── dependabot.yml ├── labels.yml └── workflows │ ├── changelog.yml │ ├── label-sync.yml │ └── scripts │ ├── processCommit.js │ └── updateChangelog.js ├── .gitignore ├── .husky └── pre-commit ├── .lintstagedrc.json ├── .prettierrc.json ├── .vscode ├── commands.code-snippets ├── extensions.json ├── imports.code-snippets └── settings.json ├── LICENSE ├── README.md ├── apps ├── BobTheBot │ ├── .eslintrc.json │ ├── .prettierignore │ ├── .prettierrc.cjs │ ├── CHANGELOG.md │ ├── LICENSE │ ├── PRIVACY.md │ ├── README.md │ ├── TOS.md │ ├── package.json │ ├── resources │ │ ├── 8ballresponses.txt │ │ ├── dadjokes.txt │ │ ├── hackdocs │ │ │ ├── emailextensions.txt │ │ │ └── passwords.txt │ │ ├── items.json │ │ └── quotes │ │ │ ├── Motivationalquotes.txt │ │ │ └── Scientific.txt │ ├── src │ │ ├── constants.ts │ │ ├── database.ts │ │ ├── deploy.ts │ │ ├── events │ │ │ ├── guildCreate.ts │ │ │ ├── interactionCreate.ts │ │ │ ├── messageCreate.ts │ │ │ ├── messageDelete.ts │ │ │ ├── messageUpdate.ts │ │ │ └── ready.ts │ │ ├── index.ts │ │ ├── interactions │ │ │ ├── context-menu │ │ │ │ └── report │ │ │ │ │ ├── reportMessage.ts │ │ │ │ │ └── reportUser.ts │ │ │ ├── economy │ │ │ │ ├── balance.ts │ │ │ │ ├── buy.ts │ │ │ │ ├── deposit.ts │ │ │ │ ├── earn.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── inventory.ts │ │ │ │ ├── iteminfo.ts │ │ │ │ ├── rankings.ts │ │ │ │ ├── sell.ts │ │ │ │ ├── shop.ts │ │ │ │ ├── transfer.ts │ │ │ │ ├── use.ts │ │ │ │ └── withdraw.ts │ │ │ ├── fun │ │ │ │ ├── 8ball.ts │ │ │ │ ├── capybara.ts │ │ │ │ ├── dadjoke.ts │ │ │ │ ├── meme.ts │ │ │ │ ├── meow.ts │ │ │ │ ├── rps.ts │ │ │ │ └── woof.ts │ │ │ ├── information │ │ │ │ ├── avatar.ts │ │ │ │ ├── botinfo.ts │ │ │ │ ├── channelinfo.ts │ │ │ │ ├── help.ts │ │ │ │ ├── invite.ts │ │ │ │ ├── leaderboard.ts │ │ │ │ ├── ping.ts │ │ │ │ ├── rank.ts │ │ │ │ ├── roleinfo.ts │ │ │ │ ├── roles.ts │ │ │ │ ├── serverinfo.ts │ │ │ │ ├── stats.ts │ │ │ │ ├── uptime.ts │ │ │ │ ├── userinfo.ts │ │ │ │ └── weather.ts │ │ │ ├── moderation │ │ │ │ ├── ban.ts │ │ │ │ ├── history.ts │ │ │ │ ├── kick.ts │ │ │ │ ├── lock.ts │ │ │ │ ├── mute.ts │ │ │ │ ├── purge.ts │ │ │ │ ├── revoke.ts │ │ │ │ ├── slowmode.ts │ │ │ │ ├── softban.ts │ │ │ │ ├── unban.ts │ │ │ │ ├── unlock.ts │ │ │ │ ├── unmute.ts │ │ │ │ └── warn.ts │ │ │ └── tools │ │ │ │ ├── announce.ts │ │ │ │ ├── diagnose.ts │ │ │ │ ├── disable.ts │ │ │ │ ├── enable.ts │ │ │ │ ├── github.ts │ │ │ │ ├── hash.ts │ │ │ │ ├── manipulate.ts │ │ │ │ ├── qrcode.ts │ │ │ │ ├── setrank.ts │ │ │ │ └── setup.ts │ │ ├── models │ │ │ ├── EconomyModel.ts │ │ │ ├── GuildModel.ts │ │ │ ├── InfractionsModel.ts │ │ │ ├── LevelModel.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── helpers │ │ │ ├── autocompleteHelpers.ts │ │ │ ├── capitalizeFirst.ts │ │ │ ├── convertMS.ts │ │ │ ├── damerau.ts │ │ │ ├── dataSweeper.ts │ │ │ ├── getCommandData.ts │ │ │ ├── processPermissions.ts │ │ │ ├── requestItemData.ts │ │ │ ├── returnError.ts │ │ │ └── useItem.ts │ │ │ ├── index.ts │ │ │ ├── logger.ts │ │ │ └── types │ │ │ ├── ApplicationCommands.ts │ │ │ ├── Event.ts │ │ │ ├── ExtendedClient.ts │ │ │ ├── Github.ts │ │ │ └── IItem.ts │ └── tsconfig.json └── Website │ ├── LICENSE │ └── README.md ├── package.json └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/PULL_REQUEST_TEMPLATE/pull_request_template.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/assets/step_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/assets/step_2.png -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/workflows/changelog.yml -------------------------------------------------------------------------------- /.github/workflows/label-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/workflows/label-sync.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/processCommit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/workflows/scripts/processCommit.js -------------------------------------------------------------------------------- /.github/workflows/scripts/updateChangelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.github/workflows/scripts/updateChangelog.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | npm run lint-staged -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/commands.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.vscode/commands.code-snippets -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/imports.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.vscode/imports.code-snippets -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/README.md -------------------------------------------------------------------------------- /apps/BobTheBot/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/.eslintrc.json -------------------------------------------------------------------------------- /apps/BobTheBot/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/.prettierignore -------------------------------------------------------------------------------- /apps/BobTheBot/.prettierrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/.prettierrc.cjs -------------------------------------------------------------------------------- /apps/BobTheBot/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/CHANGELOG.md -------------------------------------------------------------------------------- /apps/BobTheBot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/LICENSE -------------------------------------------------------------------------------- /apps/BobTheBot/PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/PRIVACY.md -------------------------------------------------------------------------------- /apps/BobTheBot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/README.md -------------------------------------------------------------------------------- /apps/BobTheBot/TOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/TOS.md -------------------------------------------------------------------------------- /apps/BobTheBot/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/package.json -------------------------------------------------------------------------------- /apps/BobTheBot/resources/8ballresponses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/resources/8ballresponses.txt -------------------------------------------------------------------------------- /apps/BobTheBot/resources/dadjokes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/resources/dadjokes.txt -------------------------------------------------------------------------------- /apps/BobTheBot/resources/hackdocs/emailextensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/resources/hackdocs/emailextensions.txt -------------------------------------------------------------------------------- /apps/BobTheBot/resources/hackdocs/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/resources/hackdocs/passwords.txt -------------------------------------------------------------------------------- /apps/BobTheBot/resources/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/resources/items.json -------------------------------------------------------------------------------- /apps/BobTheBot/resources/quotes/Motivationalquotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/resources/quotes/Motivationalquotes.txt -------------------------------------------------------------------------------- /apps/BobTheBot/resources/quotes/Scientific.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/resources/quotes/Scientific.txt -------------------------------------------------------------------------------- /apps/BobTheBot/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/constants.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/database.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/deploy.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/events/guildCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/events/guildCreate.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/events/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/events/interactionCreate.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/events/messageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/events/messageCreate.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/events/messageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/events/messageDelete.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/events/messageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/events/messageUpdate.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/events/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/events/ready.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/index.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/context-menu/report/reportMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/context-menu/report/reportMessage.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/context-menu/report/reportUser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/context-menu/report/reportUser.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/balance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/balance.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/buy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/buy.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/deposit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/deposit.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/earn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/earn.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/fish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/fish.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/inventory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/inventory.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/iteminfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/iteminfo.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/rankings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/rankings.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/sell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/sell.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/shop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/shop.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/transfer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/transfer.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/use.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/economy/withdraw.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/economy/withdraw.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/fun/8ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/fun/8ball.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/fun/capybara.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/fun/capybara.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/fun/dadjoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/fun/dadjoke.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/fun/meme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/fun/meme.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/fun/meow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/fun/meow.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/fun/rps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/fun/rps.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/fun/woof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/fun/woof.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/avatar.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/botinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/botinfo.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/channelinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/channelinfo.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/help.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/invite.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/leaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/leaderboard.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/ping.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/rank.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/roleinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/roleinfo.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/roles.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/serverinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/serverinfo.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/stats.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/uptime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/uptime.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/userinfo.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/information/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/information/weather.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/ban.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/history.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/history.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/kick.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/lock.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/mute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/mute.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/purge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/purge.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/revoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/revoke.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/slowmode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/slowmode.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/softban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/softban.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/unban.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/unlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/unlock.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/unmute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/unmute.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/moderation/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/moderation/warn.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/announce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/announce.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/diagnose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/diagnose.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/disable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/disable.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/enable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/enable.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/github.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/hash.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/manipulate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/manipulate.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/qrcode.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/setrank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/setrank.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/interactions/tools/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/interactions/tools/setup.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/models/EconomyModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/models/EconomyModel.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/models/GuildModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/models/GuildModel.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/models/InfractionsModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/models/InfractionsModel.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/models/LevelModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/models/LevelModel.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/models/index.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/autocompleteHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/autocompleteHelpers.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/capitalizeFirst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/capitalizeFirst.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/convertMS.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/convertMS.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/damerau.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/damerau.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/dataSweeper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/dataSweeper.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/getCommandData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/getCommandData.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/processPermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/processPermissions.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/requestItemData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/requestItemData.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/returnError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/returnError.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/helpers/useItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/helpers/useItem.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/index.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/logger.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/types/ApplicationCommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/types/ApplicationCommands.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/types/Event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/types/Event.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/types/ExtendedClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/types/ExtendedClient.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/types/Github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/types/Github.ts -------------------------------------------------------------------------------- /apps/BobTheBot/src/utils/types/IItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/src/utils/types/IItem.ts -------------------------------------------------------------------------------- /apps/BobTheBot/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/BobTheBot/tsconfig.json -------------------------------------------------------------------------------- /apps/Website/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/apps/Website/LICENSE -------------------------------------------------------------------------------- /apps/Website/README.md: -------------------------------------------------------------------------------- 1 | # Work in progress... 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TetieWasTaken/BobTheBot/HEAD/tsconfig.json --------------------------------------------------------------------------------