├── .github └── FUNDING.yml ├── I_CANNOT_READ_FILES.png ├── LICENSE ├── README.md ├── botconfig ├── config.json └── embed.json ├── commands ├── ⛔️ Admin │ ├── embed.js │ ├── prefix.js │ ├── say.js │ └── setup.js └── 🔰 Info │ ├── botinfo.js │ ├── developer.js │ ├── djmode.js │ ├── github.js │ ├── help.js │ ├── invite.js │ ├── ping.js │ ├── serverinfo.js │ ├── sponsor.js │ ├── stats.js │ ├── uptime.js │ └── userinfo.js ├── databases ├── chatbot │ ├── enmap.sqlite │ ├── enmap.sqlite-shm │ └── enmap.sqlite-wal ├── settings │ ├── enmap.sqlite │ ├── enmap.sqlite-shm │ └── enmap.sqlite-wal └── stats │ ├── enmap.sqlite │ ├── enmap.sqlite-shm │ └── enmap.sqlite-wal ├── events ├── client │ ├── disconnect.js │ ├── error.js │ ├── ready.js │ ├── reconnecting.js │ └── warn.js └── guild │ └── message.js ├── handlers ├── command.js ├── events.js └── functions.js ├── index.js ├── modules └── chatfeature.js └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /I_CANNOT_READ_FILES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/I_CANNOT_READ_FILES.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/README.md -------------------------------------------------------------------------------- /botconfig/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/botconfig/config.json -------------------------------------------------------------------------------- /botconfig/embed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/botconfig/embed.json -------------------------------------------------------------------------------- /commands/⛔️ Admin/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/⛔️ Admin/embed.js -------------------------------------------------------------------------------- /commands/⛔️ Admin/prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/⛔️ Admin/prefix.js -------------------------------------------------------------------------------- /commands/⛔️ Admin/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/⛔️ Admin/say.js -------------------------------------------------------------------------------- /commands/⛔️ Admin/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/⛔️ Admin/setup.js -------------------------------------------------------------------------------- /commands/🔰 Info/botinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/botinfo.js -------------------------------------------------------------------------------- /commands/🔰 Info/developer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/developer.js -------------------------------------------------------------------------------- /commands/🔰 Info/djmode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/djmode.js -------------------------------------------------------------------------------- /commands/🔰 Info/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/github.js -------------------------------------------------------------------------------- /commands/🔰 Info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/help.js -------------------------------------------------------------------------------- /commands/🔰 Info/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/invite.js -------------------------------------------------------------------------------- /commands/🔰 Info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/ping.js -------------------------------------------------------------------------------- /commands/🔰 Info/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/serverinfo.js -------------------------------------------------------------------------------- /commands/🔰 Info/sponsor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/sponsor.js -------------------------------------------------------------------------------- /commands/🔰 Info/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/stats.js -------------------------------------------------------------------------------- /commands/🔰 Info/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/uptime.js -------------------------------------------------------------------------------- /commands/🔰 Info/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/commands/🔰 Info/userinfo.js -------------------------------------------------------------------------------- /databases/chatbot/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/chatbot/enmap.sqlite -------------------------------------------------------------------------------- /databases/chatbot/enmap.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/chatbot/enmap.sqlite-shm -------------------------------------------------------------------------------- /databases/chatbot/enmap.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/chatbot/enmap.sqlite-wal -------------------------------------------------------------------------------- /databases/settings/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/settings/enmap.sqlite -------------------------------------------------------------------------------- /databases/settings/enmap.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/settings/enmap.sqlite-shm -------------------------------------------------------------------------------- /databases/settings/enmap.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/settings/enmap.sqlite-wal -------------------------------------------------------------------------------- /databases/stats/enmap.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/stats/enmap.sqlite -------------------------------------------------------------------------------- /databases/stats/enmap.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/stats/enmap.sqlite-shm -------------------------------------------------------------------------------- /databases/stats/enmap.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/databases/stats/enmap.sqlite-wal -------------------------------------------------------------------------------- /events/client/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/events/client/disconnect.js -------------------------------------------------------------------------------- /events/client/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/events/client/error.js -------------------------------------------------------------------------------- /events/client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/events/client/ready.js -------------------------------------------------------------------------------- /events/client/reconnecting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/events/client/reconnecting.js -------------------------------------------------------------------------------- /events/client/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/events/client/warn.js -------------------------------------------------------------------------------- /events/guild/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/events/guild/message.js -------------------------------------------------------------------------------- /handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/handlers/command.js -------------------------------------------------------------------------------- /handlers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/handlers/events.js -------------------------------------------------------------------------------- /handlers/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/handlers/functions.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/index.js -------------------------------------------------------------------------------- /modules/chatfeature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/modules/chatfeature.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/discord-chat-bot/HEAD/package.json --------------------------------------------------------------------------------