FridayNightFunkinBoyfriendBot/bot.js

177 lines
5.5 KiB
JavaScript
Raw Permalink Normal View History

2023-12-20 11:54:03 -05:00
const mc = require('minecraft-protocol')
const { EventEmitter } = require('node:events')
const fs = require('fs')
const path = require('path')
const util = require('node:util')
console.log(`Starting ${process.env["buildstring"]} .......`)
console.log(`Foundation: ${process.env["FoundationBuildString"]}`)
console.log('this may take a few moments....')
2023-12-26 18:45:18 -05:00
require('events').EventEmitter.defaultMaxListeners = 20;
2023-12-20 11:54:03 -05:00
function createBot(options = {}) {
const bot = new EventEmitter()
const rs = require('randomstring')
// Set some default values in options
let r = Math.floor(Math.random() * 255) + 1;
options.host ??= 'localhost'
options.username ??= 'FNFBoyfriendBot'
options.hideErrors ??= false // HACK: Hide errors by default as a lazy fix to console being spammed with them
options.console ??= true
options.input ??= true
2023-12-26 18:45:18 -05:00
//options.logger ??= true
2023-12-24 12:11:42 -05:00
// MainPrefix: "~",
// SecondaryPrefix:'%',
//TertiaryPrefix:'@'
options.commands.MainPrefix ??= '!'
options.commands.SecondaryPrefix ??= '!'
options.commands.TertiaryPrefix ??= '!'
2023-12-20 11:54:03 -05:00
options.selfcare.unmuted ??= true
options.selfcare.vanished ??= true
options.selfcare.prefix ??= true
options.selfcare.skin ??= true
options.selfcare.cspy ??= true
options.selfcare.op ??= true
options.selfcare.gmc ??= true
options.selfcare.interval ??= 500
options.Core.core ??= true
2023-12-24 12:11:42 -05:00
2023-12-20 11:54:03 -05:00
options.discord.commandPrefix ??= '!'
options.reconnectDelay ??= 1000
options.Core.customName ??= '@'
options.selfcare.username ??= true
options.selfcare.nickname ??= true
options.selfcare.god ??= true
options.selfcare.tptoggle ??= true
bot.options = options
// Create our client object, put it on the bot, and register some events
bot.on('init_client', client => {
client.on('packet', (data, meta) => {
bot.emit('packet', data, meta)
bot.emit('packet.' + meta.name, data)
})
client.on('login', async function (data) {
bot.uuid = client.uuid
bot.username = client.username
bot.entityId = data.entityId
bot.host = bot.options.host
bot.port = bot.options.port
bot.buildstring = process.env['buildstring']
bot.fbs = process.env['FoundationBuildString']
bot.version = bot.options.version
2023-12-26 18:45:18 -05:00
console.log(`Username: ${bot.options.username}`)
console.log(`Host: ${bot.options.host}:${bot.options.port}`)
console.log(`Minecraft java version: ${bot.options.version}`)
/* console.log(`Username: ${bot.username}`)
2023-12-20 11:54:03 -05:00
console.log(`Host: ${bot.host}:${bot.port}`)
2023-12-26 18:45:18 -05:00
console.log(`Minecraft java version: ${bot.version}`)*/
2023-12-20 11:54:03 -05:00
})
2023-12-26 18:45:18 -05:00
//reason, fullReason
2023-12-20 11:54:03 -05:00
client.on('end', reason => { bot.emit('end', reason)
2023-12-29 16:15:50 -05:00
console.log(reason)
2023-12-26 18:45:18 -05:00
2023-12-20 11:54:03 -05:00
})
2023-12-26 18:45:18 -05:00
client.on('disconnect', reason => {
bot.emit('disconnect', reason)
2023-12-29 16:15:50 -05:00
console.log(reason)
2023-12-26 18:45:18 -05:00
})
client.on('kick_disconnect', reason => {
bot.emit('kick_disconnect', reason)
console.log(reason)
})
2023-12-20 11:54:03 -05:00
client.on('keep_alive', ({ keepAliveId }) => {
bot.emit('keep_alive', { keepAliveId })
2023-12-29 16:15:50 -05:00
// console.log(keepAliveId)
2023-12-20 11:54:03 -05:00
})
2023-12-26 18:45:18 -05:00
2023-12-20 11:54:03 -05:00
client.on('error', error => bot.emit('error', error), )
2023-12-26 18:45:18 -05:00
//client.end(reason, fullReason)
})
/*
bot._client.on('kick_disconnect', (data) => {
const parsed = JSON.parse(data.reason)
bot.end(parsed, 'kick_disconnect')
2023-12-20 11:54:03 -05:00
})
2023-12-26 18:45:18 -05:00
*/
2023-12-20 11:54:03 -05:00
const buildstring = process.env['buildstring']
const client = options.client ?? mc.createClient(options)
bot._client = client
bot.emit('init_client', client)
bot.bots = options.bots ?? [bot]
2023-12-26 18:45:18 -05:00
//bot.setMaxListeners(Infinity)
//bot._client.setMaxListeners(Infinity)
2023-12-20 11:54:03 -05:00
// Modules
bot.loadModule = module => module(bot, options)
for (const filename of fs.readdirSync(path.join(__dirname, 'modules'))) {
try {
const module = require(path.join(__dirname, 'modules', filename))
bot.loadModule(module)
//console.log(filename.length);
} catch (error) {
console.error('\x1b[0m\x1b[91m[ERROR]: \x1b[0m\x1b[90mFailed to load module', filename, ':', error)
}
}
return bot
}//path.join(__dirname, 'modules', filename)
//path.join(amonger + 'FridayNightFunkinBoyfriendBot') !== path.join(amonger)
//fs.stat
const amonger = '../'
if (fs.existsSync('../FridayNightFunkinBoyfriendBot') == false) {
process.exit(1)
}
//path.join('') != fs. existsSync('~/FridayNightFunkinBoyfriendBot/index.js')
const modules = './modules';
const util2 = './util';
const CommandModules = './CommandModules';
const commands = './commands';
const chat = './chat'
fs.readdir(util2, (err, files) => {
console.log('Successfully loaded: ' + files.length + ' util files');
});
fs.readdir(modules, (err, files) => {
console.log('Successfully loaded: ' + files.length + ' module files');
});
fs.readdir(commands, (err, files) => {
console.log('Successfully loaded: ' + files.length + ' command files');
});
fs.readdir(CommandModules, (err, files) => {
console.log('Successfully loaded: ' + files.length + ' CommandModule files');
});
fs.readdir(chat, (err, files) => {
console.log('Successfully loaded: ' + files.length + ' chat files');
});
// ABot username function mabe mabe
module.exports = createBot