├── .github └── FUNDING.yml ├── .replit ├── LICENSE ├── README.md ├── commands └── moderation │ ├── disablechatbot.js │ └── set-chatbot.js ├── config.json ├── events └── message.js ├── handler ├── command.js └── events.js ├── index.js └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/.replit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/README.md -------------------------------------------------------------------------------- /commands/moderation/disablechatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/commands/moderation/disablechatbot.js -------------------------------------------------------------------------------- /commands/moderation/set-chatbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/commands/moderation/set-chatbot.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "", 3 | "default_prefix" : "c." 4 | } 5 | -------------------------------------------------------------------------------- /events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/events/message.js -------------------------------------------------------------------------------- /handler/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/handler/command.js -------------------------------------------------------------------------------- /handler/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/handler/events.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Khanmanan/discord-chatbot/HEAD/package.json --------------------------------------------------------------------------------