botv12/index.js

78 lines
1.7 KiB
JavaScript
Raw Normal View History

2024-11-19 20:05:19 -05:00
import { createClient } from 'minecraft-protocol'
import settings from './settings.js'
2024-10-23 22:59:54 -04:00
import generateUser from './util/usergen.js'
import EventEmitter from 'node:events'
2024-11-19 20:05:19 -05:00
import { readdirSync } from 'node:fs'
2024-11-19 20:05:19 -05:00
const bots = []
2024-11-19 20:05:19 -05:00
const plugins = []
const bpl = readdirSync('plugins')
for (const plugin of bpl) {
if (!plugin.endsWith('.js')) {
continue
}
try {
2024-11-19 20:05:19 -05:00
import(`./plugins/${plugin}`).then((pluginItem) => {
for (const bot of bots) {
2024-10-23 22:59:54 -04:00
pluginItem.default(bot)
}
2024-10-24 00:43:22 -04:00
plugins.push(pluginItem.default) // For rejoining
})
} catch (e) { console.log(e) }
}
const createBot = function createBot (host, oldId) {
const bot = new EventEmitter()
2024-11-19 20:05:19 -05:00
2024-10-24 00:43:22 -04:00
bot.host = host
bot.interval = {}
2024-11-19 20:05:19 -05:00
bot._client = createClient({
host: host.host,
port: host.port ? host.port : 25565,
username: generateUser(host.options.legalName),
version: host.version ? host.version : settings.version_mc
})
bot.info = (msg) => {
console.log(`[${bot.id}] [info] ${msg}`)
}
bot.displayChat = (type, subtype, msg) => {
if (settings.displaySubtypesToConsole) {
console.log(`[${bot.id}] [${type}] [${subtype}] ${msg}`)
} else {
console.log(`[${bot.id}] [${type}] ${msg}`)
}
}
if (typeof oldId !== 'undefined') {
for (const i in bots[oldId].interval) {
clearInterval(bots[oldId].interval[i])
}
delete bots[oldId]
bot.id = oldId
bots[oldId] = bot
2024-11-19 20:05:19 -05:00
for (const pluginItem of plugins) {
2024-10-24 00:43:22 -04:00
pluginItem(bot)
2024-10-21 17:47:49 -04:00
}
} else {
bot.id = bots.length
bots.push(bot)
}
bot._client.on('error', (err) => {
console.log(err)
})
}
for (const i in settings.servers) {
createBot(settings.servers[i])
}
export {
bots,
createBot
}