28 lines
670 B
JavaScript
28 lines
670 B
JavaScript
const mc = require('minecraft-protocol');
|
|
const inject = require("./emit.js");
|
|
|
|
const bot = mc.createClient({
|
|
//host: 'chipmunk.land',
|
|
host: 'kaboom.pw',
|
|
port: 25565,
|
|
username: 'catparser',
|
|
version: "1.20.4",
|
|
});
|
|
|
|
inject(bot);
|
|
|
|
bot.on('custom_playerChat', (msg) => {
|
|
console.log(`PlayerChat: ${msg}`);
|
|
});
|
|
|
|
bot.on('custom_systemChat', (msg, nocolormsg, cspy) => { // SystemChat maybe is PlayerChat use sudo or vanish
|
|
console.log(`SystemChat: ${msg}`);
|
|
});
|
|
|
|
bot.on('custom_commandspy', (cspy) => {
|
|
console.log(`CSPY: ${cspy.username}: /${cspy.command}`);
|
|
})
|
|
|
|
bot.on('error', (err) => {
|
|
console.error('Bot Error:', err);
|
|
});
|