FridayNightFunkinBoyfriendBot/src/modules/boot.js

22 lines
534 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) => {
bot.chat.message('&9FNF&3Boyfriend&1Bot &fcreated by &4Parker&02991');
}) // &9 &3 &1
}
module.exports = boot;
2024-07-20 20:27:17 -04:00
/*
const readline = require('readline');
readline.emitKeypressEvents(process.stdin);
process.stdin.on('keypress', (str, key) => {
// console.log(str)
// console.log(key)
if (key && key.ctrl && key.name === 'c') {
console.log('mrrow >:3');
process.exit(69420);
}
})
*/