12 lines
367 B
JavaScript
12 lines
367 B
JavaScript
function boot (bot, options, discordClient, config) {
|
|
bot.on("packet.login", (data) => {
|
|
if (bot.options.isCreayun) return
|
|
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');
|
|
}
|
|
}) // &9 &3 &1
|
|
}
|
|
module.exports = boot;
|
|
|