├── LICENCE ├── package.json └── src ├── commands └── information │ └── setup.js ├── config ├── config.json └── server.json ├── console └── watermark.js ├── events ├── client │ ├── messageCreate.js │ └── ready.js └── setup │ ├── feedback.js │ ├── feedbackmodal.js │ ├── roles.js │ └── rules.js ├── handlers ├── command.js └── event.js └── index.js /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/LICENCE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/information/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/commands/information/setup.js -------------------------------------------------------------------------------- /src/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/config/config.json -------------------------------------------------------------------------------- /src/config/server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/config/server.json -------------------------------------------------------------------------------- /src/console/watermark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/console/watermark.js -------------------------------------------------------------------------------- /src/events/client/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/events/client/messageCreate.js -------------------------------------------------------------------------------- /src/events/client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/events/client/ready.js -------------------------------------------------------------------------------- /src/events/setup/feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/events/setup/feedback.js -------------------------------------------------------------------------------- /src/events/setup/feedbackmodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/events/setup/feedbackmodal.js -------------------------------------------------------------------------------- /src/events/setup/roles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/events/setup/roles.js -------------------------------------------------------------------------------- /src/events/setup/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/events/setup/rules.js -------------------------------------------------------------------------------- /src/handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/handlers/command.js -------------------------------------------------------------------------------- /src/handlers/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/handlers/event.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flameface/discord-server-bot/HEAD/src/index.js --------------------------------------------------------------------------------