70 lines
2.1 KiB
JavaScript
70 lines
2.1 KiB
JavaScript
|
const mc = require('minecraft-protocol')
|
||
|
const { EventEmitter } = require('events')
|
||
|
const fs = require('fs')
|
||
|
const path = require('path')
|
||
|
|
||
|
// "buildstring":"FNFBoyfriendBotX V4.0.8a Build:97",
|
||
|
//"FoundationBuildString":"Ultimate Foundation V1.0.1 Build:31",
|
||
|
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 ??= username()
|
||
|
options.hideErrors ??= false // HACK: Hide errors by default as a lazy fix to console being spammed with them
|
||
|
|
||
|
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', () => {
|
||
|
bot.uuid = client.uuid
|
||
|
bot.username = client.username
|
||
|
})
|
||
|
|
||
|
client.on('end', reason => bot.emit('end', reason))
|
||
|
|
||
|
client.on('error', error => bot.emit('error', error))
|
||
|
|
||
|
})
|
||
|
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]
|
||
|
|
||
|
// 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)
|
||
|
} catch (error) {
|
||
|
console.error('Failed to load module', filename, ':', error)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return bot
|
||
|
}
|
||
|
|
||
|
// ABot username function mabe mabe
|
||
|
function username() {
|
||
|
const characters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'; // remove sus characters like ` or like ( or whatever because it breaks whatever
|
||
|
let username = '';
|
||
|
for (let i = 0; i < 8; i++) {
|
||
|
const randomIndex = Math.floor(Math.random() * characters.length);
|
||
|
username += characters[randomIndex];
|
||
|
}
|
||
|
return username;
|
||
|
}
|
||
|
|
||
|
module.exports = createBot
|