├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .replit ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── images ├── 1.png ├── 2.png ├── 3.png ├── border.png ├── btc-try.png ├── buymeacoffee-try.png ├── cloudinary-try.png ├── digitalocean-try.png ├── patreon-try.png ├── presearch-try.png ├── railway-try.png └── vultr-try.png ├── logs └── logs.txt ├── package.json ├── src ├── config.json ├── core │ ├── client.js │ ├── logger.js │ └── register.js ├── data │ └── db.js ├── events │ ├── interactionCreate.js │ └── ready.js ├── index.js └── interactions │ ├── buttons │ └── buttons.txt │ ├── commands │ ├── ban.js │ ├── botinfo.js │ ├── clear.js │ ├── help.js │ ├── kick.js │ ├── mute.js │ └── warn.js │ ├── embeds.js │ ├── modals │ └── modals.txt │ └── selectMenus │ └── selectMenus.txt └── vultr-try.JPG /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/.replit -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/README.md -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/1.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/3.png -------------------------------------------------------------------------------- /images/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/border.png -------------------------------------------------------------------------------- /images/btc-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/btc-try.png -------------------------------------------------------------------------------- /images/buymeacoffee-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/buymeacoffee-try.png -------------------------------------------------------------------------------- /images/cloudinary-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/cloudinary-try.png -------------------------------------------------------------------------------- /images/digitalocean-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/digitalocean-try.png -------------------------------------------------------------------------------- /images/patreon-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/patreon-try.png -------------------------------------------------------------------------------- /images/presearch-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/presearch-try.png -------------------------------------------------------------------------------- /images/railway-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/railway-try.png -------------------------------------------------------------------------------- /images/vultr-try.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/images/vultr-try.png -------------------------------------------------------------------------------- /logs/logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/logs/logs.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/package.json -------------------------------------------------------------------------------- /src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/config.json -------------------------------------------------------------------------------- /src/core/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/core/client.js -------------------------------------------------------------------------------- /src/core/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/core/logger.js -------------------------------------------------------------------------------- /src/core/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/core/register.js -------------------------------------------------------------------------------- /src/data/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/data/db.js -------------------------------------------------------------------------------- /src/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/events/interactionCreate.js -------------------------------------------------------------------------------- /src/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/events/ready.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/index.js -------------------------------------------------------------------------------- /src/interactions/buttons/buttons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/buttons/buttons.txt -------------------------------------------------------------------------------- /src/interactions/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/commands/ban.js -------------------------------------------------------------------------------- /src/interactions/commands/botinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/commands/botinfo.js -------------------------------------------------------------------------------- /src/interactions/commands/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/commands/clear.js -------------------------------------------------------------------------------- /src/interactions/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/commands/help.js -------------------------------------------------------------------------------- /src/interactions/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/commands/kick.js -------------------------------------------------------------------------------- /src/interactions/commands/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/commands/mute.js -------------------------------------------------------------------------------- /src/interactions/commands/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/commands/warn.js -------------------------------------------------------------------------------- /src/interactions/embeds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/embeds.js -------------------------------------------------------------------------------- /src/interactions/modals/modals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/modals/modals.txt -------------------------------------------------------------------------------- /src/interactions/selectMenus/selectMenus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/src/interactions/selectMenus/selectMenus.txt -------------------------------------------------------------------------------- /vultr-try.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytemakers/Elite-Bot/HEAD/vultr-try.JPG --------------------------------------------------------------------------------