FridayNightFunkinBoyfriendBot/src/modules/boot.js

13 lines
367 B
JavaScript
Raw Normal View History

2024-07-20 20:27:17 -04:00
const readline = require('readline');
2024-07-07 15:44:16 -04:00
function boot (bot, options, discordClient, config) {
bot.on("packet.login", (data) => {
2024-08-09 22:08:42 -04:00
if (new Date().getDay() === 5) {
bot.chat.message('Gettin\' freaky on a friday night!');
} else {
bot.chat.message('&9FNF&3Boyfriend&1Bot &fcreated by &4Parker&02991');
}
2024-07-07 15:44:16 -04:00
}) // &9 &3 &1
}
module.exports = boot;
2024-07-20 20:27:17 -04:00