├── Episode 1 ├── config.json ├── index.js ├── package-lock.json └── package.json ├── Episode 10 ├── commands │ ├── afk.js │ ├── ban.js │ ├── kick.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── functions.js ├── handlers │ ├── message.js │ └── ready.js ├── index.js ├── package-lock.json ├── package.json └── token.json ├── Episode 11 ├── commands │ ├── afk.js │ ├── ban.js │ ├── kick.js │ ├── meme.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── functions.js ├── handlers │ ├── message.js │ └── ready.js ├── index.js ├── package-lock.json ├── package.json └── token.json ├── Episode 12 ├── commands │ ├── afk.js │ ├── ascii.js │ ├── ban.js │ ├── kick.js │ ├── meme.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── functions.js ├── handlers │ ├── message.js │ └── ready.js ├── index.js ├── package-lock.json ├── package.json └── token.json ├── Episode 13 ├── commands │ ├── afk.js │ ├── ascii.js │ ├── ban.js │ ├── kick.js │ ├── meme.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── handlers │ ├── message.js │ └── ready.js ├── index.js ├── lib │ ├── functions.js │ └── mongodb.js ├── package-lock.json ├── package.json └── token.json ├── Episode 14 ├── commands │ ├── Fun │ │ ├── ascii.js │ │ ├── meme.js │ │ └── triggered.js │ ├── Misc │ │ ├── afk.js │ │ └── tutorial.js │ └── Moderation │ │ ├── ban.js │ │ ├── kick.js │ │ └── report.js ├── config.json ├── events │ ├── message.js │ └── ready.js ├── index.js ├── lib │ ├── functions.js │ └── mongodb.js ├── package-lock.json ├── package.json └── token.json ├── Episode 15 ├── README.md ├── commands │ ├── Fun │ │ ├── meme.js │ │ └── triggered.js │ ├── Misc │ │ ├── afk.js │ │ ├── ping.js │ │ ├── tutorial.js │ │ └── uptime.js │ └── Moderation │ │ ├── ban.js │ │ ├── kick.js │ │ └── report.js ├── config.json ├── events │ ├── message.js │ └── ready.js ├── index.js ├── lib │ ├── functions.js │ └── mongodb.js ├── package-lock.json └── package.json ├── Episode 2 ├── commands │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json └── package.json ├── Episode 3 ├── commands │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json └── package.json ├── Episode 4 ├── commands │ ├── ban.js │ ├── kick.js │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json └── package.json ├── Episode 5 ├── commands │ ├── ban.js │ ├── kick.js │ ├── report.js │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json └── package.json ├── Episode 6 ├── commands │ ├── ban.js │ ├── kick.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json └── package.json ├── Episode 7.1 ├── commands │ ├── afk.js │ ├── ban.js │ ├── kick.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json ├── package.json └── token.json ├── Episode 7 ├── commands │ ├── afk.js │ ├── ban.js │ ├── kick.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json ├── package.json └── token.json ├── Episode 8 ├── commands │ ├── afk.js │ ├── ban.js │ ├── kick.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── index.js ├── package-lock.json ├── package.json └── token.json ├── Episode 9 ├── commands │ ├── afk.js │ ├── ban.js │ ├── kick.js │ ├── report.js │ ├── triggered.js │ └── tutorial.js ├── config.json ├── functions.js ├── handlers │ ├── message.js │ └── ready.js ├── index.js ├── package-lock.json ├── package.json └── token.json └── README.md /Episode 1/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 1/config.json -------------------------------------------------------------------------------- /Episode 1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 1/index.js -------------------------------------------------------------------------------- /Episode 1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 1/package-lock.json -------------------------------------------------------------------------------- /Episode 1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 1/package.json -------------------------------------------------------------------------------- /Episode 10/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/commands/afk.js -------------------------------------------------------------------------------- /Episode 10/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/commands/ban.js -------------------------------------------------------------------------------- /Episode 10/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/commands/kick.js -------------------------------------------------------------------------------- /Episode 10/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/commands/report.js -------------------------------------------------------------------------------- /Episode 10/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/commands/triggered.js -------------------------------------------------------------------------------- /Episode 10/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 10/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/config.json -------------------------------------------------------------------------------- /Episode 10/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/functions.js -------------------------------------------------------------------------------- /Episode 10/handlers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/handlers/message.js -------------------------------------------------------------------------------- /Episode 10/handlers/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/handlers/ready.js -------------------------------------------------------------------------------- /Episode 10/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/index.js -------------------------------------------------------------------------------- /Episode 10/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/package-lock.json -------------------------------------------------------------------------------- /Episode 10/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/package.json -------------------------------------------------------------------------------- /Episode 10/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 10/token.json -------------------------------------------------------------------------------- /Episode 11/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/commands/afk.js -------------------------------------------------------------------------------- /Episode 11/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/commands/ban.js -------------------------------------------------------------------------------- /Episode 11/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/commands/kick.js -------------------------------------------------------------------------------- /Episode 11/commands/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/commands/meme.js -------------------------------------------------------------------------------- /Episode 11/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/commands/report.js -------------------------------------------------------------------------------- /Episode 11/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/commands/triggered.js -------------------------------------------------------------------------------- /Episode 11/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 11/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/config.json -------------------------------------------------------------------------------- /Episode 11/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/functions.js -------------------------------------------------------------------------------- /Episode 11/handlers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/handlers/message.js -------------------------------------------------------------------------------- /Episode 11/handlers/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/handlers/ready.js -------------------------------------------------------------------------------- /Episode 11/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/index.js -------------------------------------------------------------------------------- /Episode 11/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/package-lock.json -------------------------------------------------------------------------------- /Episode 11/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/package.json -------------------------------------------------------------------------------- /Episode 11/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 11/token.json -------------------------------------------------------------------------------- /Episode 12/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/afk.js -------------------------------------------------------------------------------- /Episode 12/commands/ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/ascii.js -------------------------------------------------------------------------------- /Episode 12/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/ban.js -------------------------------------------------------------------------------- /Episode 12/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/kick.js -------------------------------------------------------------------------------- /Episode 12/commands/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/meme.js -------------------------------------------------------------------------------- /Episode 12/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/report.js -------------------------------------------------------------------------------- /Episode 12/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/triggered.js -------------------------------------------------------------------------------- /Episode 12/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 12/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/config.json -------------------------------------------------------------------------------- /Episode 12/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/functions.js -------------------------------------------------------------------------------- /Episode 12/handlers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/handlers/message.js -------------------------------------------------------------------------------- /Episode 12/handlers/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/handlers/ready.js -------------------------------------------------------------------------------- /Episode 12/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/index.js -------------------------------------------------------------------------------- /Episode 12/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/package-lock.json -------------------------------------------------------------------------------- /Episode 12/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/package.json -------------------------------------------------------------------------------- /Episode 12/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 12/token.json -------------------------------------------------------------------------------- /Episode 13/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/afk.js -------------------------------------------------------------------------------- /Episode 13/commands/ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/ascii.js -------------------------------------------------------------------------------- /Episode 13/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/ban.js -------------------------------------------------------------------------------- /Episode 13/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/kick.js -------------------------------------------------------------------------------- /Episode 13/commands/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/meme.js -------------------------------------------------------------------------------- /Episode 13/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/report.js -------------------------------------------------------------------------------- /Episode 13/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/triggered.js -------------------------------------------------------------------------------- /Episode 13/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 13/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/config.json -------------------------------------------------------------------------------- /Episode 13/handlers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/handlers/message.js -------------------------------------------------------------------------------- /Episode 13/handlers/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/handlers/ready.js -------------------------------------------------------------------------------- /Episode 13/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/index.js -------------------------------------------------------------------------------- /Episode 13/lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/lib/functions.js -------------------------------------------------------------------------------- /Episode 13/lib/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/lib/mongodb.js -------------------------------------------------------------------------------- /Episode 13/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/package-lock.json -------------------------------------------------------------------------------- /Episode 13/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/package.json -------------------------------------------------------------------------------- /Episode 13/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 13/token.json -------------------------------------------------------------------------------- /Episode 14/commands/Fun/ascii.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Fun/ascii.js -------------------------------------------------------------------------------- /Episode 14/commands/Fun/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Fun/meme.js -------------------------------------------------------------------------------- /Episode 14/commands/Fun/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Fun/triggered.js -------------------------------------------------------------------------------- /Episode 14/commands/Misc/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Misc/afk.js -------------------------------------------------------------------------------- /Episode 14/commands/Misc/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Misc/tutorial.js -------------------------------------------------------------------------------- /Episode 14/commands/Moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Moderation/ban.js -------------------------------------------------------------------------------- /Episode 14/commands/Moderation/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Moderation/kick.js -------------------------------------------------------------------------------- /Episode 14/commands/Moderation/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/commands/Moderation/report.js -------------------------------------------------------------------------------- /Episode 14/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/config.json -------------------------------------------------------------------------------- /Episode 14/events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/events/message.js -------------------------------------------------------------------------------- /Episode 14/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/events/ready.js -------------------------------------------------------------------------------- /Episode 14/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/index.js -------------------------------------------------------------------------------- /Episode 14/lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/lib/functions.js -------------------------------------------------------------------------------- /Episode 14/lib/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/lib/mongodb.js -------------------------------------------------------------------------------- /Episode 14/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/package-lock.json -------------------------------------------------------------------------------- /Episode 14/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/package.json -------------------------------------------------------------------------------- /Episode 14/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 14/token.json -------------------------------------------------------------------------------- /Episode 15/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Episode 15/commands/Fun/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Fun/meme.js -------------------------------------------------------------------------------- /Episode 15/commands/Fun/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Fun/triggered.js -------------------------------------------------------------------------------- /Episode 15/commands/Misc/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Misc/afk.js -------------------------------------------------------------------------------- /Episode 15/commands/Misc/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Misc/ping.js -------------------------------------------------------------------------------- /Episode 15/commands/Misc/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Misc/tutorial.js -------------------------------------------------------------------------------- /Episode 15/commands/Misc/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Misc/uptime.js -------------------------------------------------------------------------------- /Episode 15/commands/Moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Moderation/ban.js -------------------------------------------------------------------------------- /Episode 15/commands/Moderation/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Moderation/kick.js -------------------------------------------------------------------------------- /Episode 15/commands/Moderation/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/commands/Moderation/report.js -------------------------------------------------------------------------------- /Episode 15/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/config.json -------------------------------------------------------------------------------- /Episode 15/events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/events/message.js -------------------------------------------------------------------------------- /Episode 15/events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/events/ready.js -------------------------------------------------------------------------------- /Episode 15/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/index.js -------------------------------------------------------------------------------- /Episode 15/lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/lib/functions.js -------------------------------------------------------------------------------- /Episode 15/lib/mongodb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/lib/mongodb.js -------------------------------------------------------------------------------- /Episode 15/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/package-lock.json -------------------------------------------------------------------------------- /Episode 15/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 15/package.json -------------------------------------------------------------------------------- /Episode 2/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 2/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 2/config.json -------------------------------------------------------------------------------- /Episode 2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 2/index.js -------------------------------------------------------------------------------- /Episode 2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 2/package-lock.json -------------------------------------------------------------------------------- /Episode 2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 2/package.json -------------------------------------------------------------------------------- /Episode 3/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 3/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 3/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 3/config.json -------------------------------------------------------------------------------- /Episode 3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 3/index.js -------------------------------------------------------------------------------- /Episode 3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 3/package-lock.json -------------------------------------------------------------------------------- /Episode 3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 3/package.json -------------------------------------------------------------------------------- /Episode 4/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 4/commands/ban.js -------------------------------------------------------------------------------- /Episode 4/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 4/commands/kick.js -------------------------------------------------------------------------------- /Episode 4/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 4/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 4/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 4/config.json -------------------------------------------------------------------------------- /Episode 4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 4/index.js -------------------------------------------------------------------------------- /Episode 4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 4/package-lock.json -------------------------------------------------------------------------------- /Episode 4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 4/package.json -------------------------------------------------------------------------------- /Episode 5/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/commands/ban.js -------------------------------------------------------------------------------- /Episode 5/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/commands/kick.js -------------------------------------------------------------------------------- /Episode 5/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/commands/report.js -------------------------------------------------------------------------------- /Episode 5/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 5/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/config.json -------------------------------------------------------------------------------- /Episode 5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/index.js -------------------------------------------------------------------------------- /Episode 5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/package-lock.json -------------------------------------------------------------------------------- /Episode 5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 5/package.json -------------------------------------------------------------------------------- /Episode 6/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/commands/ban.js -------------------------------------------------------------------------------- /Episode 6/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/commands/kick.js -------------------------------------------------------------------------------- /Episode 6/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/commands/report.js -------------------------------------------------------------------------------- /Episode 6/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/commands/triggered.js -------------------------------------------------------------------------------- /Episode 6/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 6/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/config.json -------------------------------------------------------------------------------- /Episode 6/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/index.js -------------------------------------------------------------------------------- /Episode 6/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/package-lock.json -------------------------------------------------------------------------------- /Episode 6/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 6/package.json -------------------------------------------------------------------------------- /Episode 7.1/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/commands/afk.js -------------------------------------------------------------------------------- /Episode 7.1/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/commands/ban.js -------------------------------------------------------------------------------- /Episode 7.1/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/commands/kick.js -------------------------------------------------------------------------------- /Episode 7.1/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/commands/report.js -------------------------------------------------------------------------------- /Episode 7.1/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/commands/triggered.js -------------------------------------------------------------------------------- /Episode 7.1/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 7.1/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/config.json -------------------------------------------------------------------------------- /Episode 7.1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/index.js -------------------------------------------------------------------------------- /Episode 7.1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/package-lock.json -------------------------------------------------------------------------------- /Episode 7.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7.1/package.json -------------------------------------------------------------------------------- /Episode 7.1/token.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "" 3 | } -------------------------------------------------------------------------------- /Episode 7/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/commands/afk.js -------------------------------------------------------------------------------- /Episode 7/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/commands/ban.js -------------------------------------------------------------------------------- /Episode 7/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/commands/kick.js -------------------------------------------------------------------------------- /Episode 7/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/commands/report.js -------------------------------------------------------------------------------- /Episode 7/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/commands/triggered.js -------------------------------------------------------------------------------- /Episode 7/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 7/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/config.json -------------------------------------------------------------------------------- /Episode 7/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/index.js -------------------------------------------------------------------------------- /Episode 7/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/package-lock.json -------------------------------------------------------------------------------- /Episode 7/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 7/package.json -------------------------------------------------------------------------------- /Episode 7/token.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "" 3 | } -------------------------------------------------------------------------------- /Episode 8/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/commands/afk.js -------------------------------------------------------------------------------- /Episode 8/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/commands/ban.js -------------------------------------------------------------------------------- /Episode 8/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/commands/kick.js -------------------------------------------------------------------------------- /Episode 8/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/commands/report.js -------------------------------------------------------------------------------- /Episode 8/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/commands/triggered.js -------------------------------------------------------------------------------- /Episode 8/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 8/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/config.json -------------------------------------------------------------------------------- /Episode 8/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/index.js -------------------------------------------------------------------------------- /Episode 8/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/package-lock.json -------------------------------------------------------------------------------- /Episode 8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 8/package.json -------------------------------------------------------------------------------- /Episode 8/token.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "" 3 | } -------------------------------------------------------------------------------- /Episode 9/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/commands/afk.js -------------------------------------------------------------------------------- /Episode 9/commands/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/commands/ban.js -------------------------------------------------------------------------------- /Episode 9/commands/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/commands/kick.js -------------------------------------------------------------------------------- /Episode 9/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/commands/report.js -------------------------------------------------------------------------------- /Episode 9/commands/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/commands/triggered.js -------------------------------------------------------------------------------- /Episode 9/commands/tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/commands/tutorial.js -------------------------------------------------------------------------------- /Episode 9/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/config.json -------------------------------------------------------------------------------- /Episode 9/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/functions.js -------------------------------------------------------------------------------- /Episode 9/handlers/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/handlers/message.js -------------------------------------------------------------------------------- /Episode 9/handlers/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/handlers/ready.js -------------------------------------------------------------------------------- /Episode 9/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/index.js -------------------------------------------------------------------------------- /Episode 9/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/package-lock.json -------------------------------------------------------------------------------- /Episode 9/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/Episode 9/package.json -------------------------------------------------------------------------------- /Episode 9/token.json: -------------------------------------------------------------------------------- 1 | { 2 | "token": "NDU4MjIwOTEwMjEwNTgwNDgy.DgkfAQ.SEOx8UE4FEY0NLx3qkZB-Di8huA" 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spimy/Discord.JS-Bot-Developement/HEAD/README.md --------------------------------------------------------------------------------