Random
Source Code

mineflayer

very bloated node-minecraft-protocol wrapper

// simple mineflayer bot that says "Hello, World!" on login
const mineflayer = require('mineflayer')

const bot = mineflayer.createBot({

username: 'Bot',

host: 'localhost'

port: 25565
})

bot.on('login', () => bot.chat('Hello, World!'))

by fardamongus May 31, 2023