This commit is contained in:
Yaode_owo 2024-09-07 07:43:08 -04:00
parent a3c904d867
commit 945b94f812

View file

@ -1,28 +1,28 @@
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);
});
const mc = require('minecraft-protocol');
const inject = require("./chatparser.js");
const bot = mc.createClient({
//host: 'chipmunk.land',
host: 'kaboom.pw',
port: 25565,
username: 'catparser', // cat
version: "1.20.4",
});
inject(bot); // load
bot.on('custom_playerChat', (msg, uuid, plainMessage, SenderName, TargetName, formattedMessage, unsignedContent, NoColorSenderName, NoColorTargetName, NoColorformattedMessage, NoColorunsignedContent, nocolorplayermsg, packet.type) => {
console.log(`PlayerChat: ${msg}`);
});
bot.on('custom_systemChat', (msg, nocolormsg, jsonmsg) => { // 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);
});