2024-07-07 15:44:16 -04:00
|
|
|
function boot (bot, options, discordClient, config) {
|
|
|
|
bot.on("packet.login", (data) => {
|
2024-09-19 11:30:06 -04:00
|
|
|
if (bot.options.isCreayun) return
|
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
|
|
|
|